3

我正在尝试创建一个带有文本的自定义按钮。我将有一个项目列表,旁边有一个 (x),因此用户可以点击 (x) 删除该项目。像这样...

(x)项目1 (x)项目2 (x)项目3

我有一个扩展按钮的类,但我不确定应该覆盖哪些方法,因为当我使用自定义类创建按钮时,它显示为普通按钮。这是我的代码。

public class LabelButton extends Button {
  private final Context context;

  private final String label;

  public LabelButton( Context context, String label ) {
    super( context );
    this.context = context;
    this.label = label;
  }

  public View getView( View convertView, ViewGroup parent ) {
    LayoutInflater inflater = (LayoutInflater) context.getSystemService( Context.LAYOUT_INFLATER_SERVICE );
    View labelView = inflater.inflate( R.layout.label, parent, false );
    TextView textView = (TextView) labelView.findViewById( R.id.label );
    Button button = (Button) labelView.findViewById( R.id.buttonCancel );
    textView.setText( "X" );
    return labelView;
  }

}

4

2 回答 2

1

您可以创建一个扩展 LinearLayout 的自定义视图,然后使用包含 Button 和 TextView 的水平 LinearLayout 填充 xml。我建议像本教程一样创建样式属性以进行自定义。

于 2012-10-23T13:18:15.053 回答
1

您应该使用 Attrs 参数覆盖 onDraw 方法和构造函数

 public LabelButton(Context context, AttributeSet attrs, int defStyle) {
             super(context, attrs, defStyle); 
              if (attrs != null) {
              // set your attrs
         }
        }

 @Override
protected synchronized void onDraw(Canvas canvas) {
     super.onDraw(canvas);
     Paint textPaint = new Paint();
     textPaint.setAntiAlias(true);
     textPaint.setColor(textColor);
     textPaint.setTextSize(textSize);
     Rect bounds = new Rect();       
     textPaint.getTextBounds(totalText, 0, totalText.length(), bounds);
     int x = getWidth() / 2 - bounds.centerX();
     int y = getHeight() / 2 - bounds.centerY();
     canvas.drawText(text, getLeft(), y, textPaint);// draw your text in coords
}

public synchronized void setText(String text) {
     if (text != null) {
         this.text = text;
     } else {
         this.text = "";
     }
     postInvalidate();
}
于 2012-10-23T13:18:49.533 回答