我正在尝试创建一个旁边有文字的自定义按钮。我将在它们旁边有一个带有(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;
}
}
答案 0 :(得分:1)
您可以创建一个扩展LinearLayout的自定义视图,然后使用包含Button和TextView的水平LinearLayout为xml充气。我建议创建像this tutorial这样的样式属性进行自定义。
答案 1 :(得分:1)
您应该使用Attrs params
覆盖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();
}