3

我正在开发一个自定义号码选择器,我有一个带有“+”和“-”符号的按钮。
目前我只有这段代码来创建按钮。

increment = new Button(context);
increment.setTextSize(25);
increment.setText("+");

现在,我想像这样添加要在按钮上显示的最小值和最大值。

目标外观示例
我怎样才能做到这一点?
所以我需要将最大标签居中,并给它一个不同的大小作为加号。

任何帮助将不胜感激!:)

4

4 回答 4

2

不知道是不是你需要的,

但是在您的布局 xml 文件中,

<Button
         android:id="@+id/btn1"
         android:layout_width="0dip"
         android:background="@android:color/darker_gray"
         android:drawableBottom="@drawable/image_plus"
         android:text="Max: 10"
         />

<!-- 
android:drawableBottom="@drawable/image_plus" // plus sign from drawable
android:text="Max: 10" // Text you want to put on top of image
 -->

或者使用代码,

increment = new Button(context);
increment.setTextSize(25);
increment.setText("Max: 10");
increment.setCompoundDrawables(null, null, null, getResources().getDrawable(R.drawable.plus_sign)); // Here you have to apply + sign image to drawable
于 2012-07-19T11:38:36.223 回答
1

许多解决方案:

  • 您可以使用标准按钮并在其上写很多行(可能带有“\n”)
  • 您可以创建一个扩展 Button 类的自定义按钮,并重写 onDraw 方法以写入您的最大值和最小值。
  • 您可以创建一个包含 3 个 textView(或 2 个 textView 和一个 imageView)的布局,并为单击效果添加一个 backgroundDrawable。

希望对你有帮助

于 2012-07-19T11:41:39.987 回答
1

您可以创建自己的自定义按钮:

这是布局:

<com.your.package.ui.widget.IncrementButton xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:background="@drawable/button_grey" >

    <TextView
        android:id="@+id/increment_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="+"
        android:textColor="@android:color/black"
        android:textSize="22sp" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@id/increment_label"
        android:layout_centerHorizontal="true"
        android:text="Max 10"
        android:textColor="#FFFFFF"
        android:textSize="14sp" />

</com.your.package.ui.widget.IncrementButton>

您需要一个可绘制背景的形状(以显示点击):您不会有颜色,只需用您的颜色替换它们。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true"><shape>
            <padding android:bottom="10dip" android:left="10dip" android:right="10dip" android:top="10dip" />

            <corners android:radius="5dip" />

            <stroke android:width="1dip" android:color="@color/black" />

            <gradient android:angle="270" android:endColor="@color/button_dark_grey" android:startColor="@color/button_light_grey" />
        </shape></item>
    <item android:state_focused="true"><shape>
            <padding android:bottom="10dip" android:left="10dip" android:right="10dip" android:top="10dip" />

            <corners android:radius="5dip" />

            <stroke android:width="1dip" android:color="@color/black" />

            <gradient android:angle="45" android:endColor="@color/button_dark_grey" android:startColor="@color/button_light_grey" />
        </shape></item>
    <item><shape>
            <padding android:bottom="10dip" android:left="10dip" android:right="10dip" android:top="10dip" />

            <corners android:radius="5dip" />

            <stroke android:width="1dip" android:color="@color/black" />

            <gradient android:angle="270" android:endColor="@color/button_light_grey" android:startColor="@color/button_dark_grey" />
        </shape></item>

</selector>

然后您可以完全控制按钮:

package com.your.package.ui.widget;



public class IncrementButton extends RelativeLayout implements OnClickListener {

    private OnIncrementClick onIncrementClickListener;

    public interface OnIncrementClick {
        void onIncrementClick();
    }

    public IncrementButton(Context context) {
        super(context);
        init();
    }

    public IncrementButton(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    public IncrementButton(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init();
    }

    private void init() {
        setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        if(this.onIncrementClickListener != null)
            this.onIncrementClickListener.onIncrementClick();
    }

    public void setOnIncrementClickListener(OnIncrementClick onIncrementClickListener) {
        this.onIncrementClickListener = onIncrementClickListener;
    }
}

然后,您可以在任何布局中包含该按钮,引用它并添加一个单击侦听器(就像普通按钮一样)。

 IncrementButton button = (IncrementButton) findViewById(R.id.whatever);
 button.setOnIncrementClickListener(yourListener);
于 2012-07-19T11:45:35.813 回答
0
increment = new Button(context);
increment.setTextSize(25);
String text="<h4>Max:10</h4><h1><b>+</b></h1>";
increment.setText(Html.formHtml(text));
于 2012-07-19T11:38:57.937 回答