我在表格中有一组按钮,每个按钮都有一些文字。我现在希望有一些按钮在顶部包含一个可绘制的图标(显然是较小的文本),而不会破坏按钮的大小。是否有实现这一目标的标准方法?
注意:我希望以编程方式而不是通过xml文件执行此操作。
答案 0 :(得分:0)
你试过吗?
Button b = new Button(this);
b.setCompoundDrawablesWithIntrinsicBounds(null, getResources().getDrawable(R.drawable.ic_launcher), null, null);
b.setText("Button");
试试这个,让我知道发生了什么......