我在动态创建按钮。我首先使用XML样式他们,我试图采取下面的XML,使其编程。
<Button
android:id="@+id/buttonIdDoesntMatter"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="buttonName"
android:drawableLeft="@drawable/imageWillChange"
android:onClick="listener"
android:layout_width="fill_parent">
</Button>
这是我目前得到的。我什么都能做,就是画不出来。
linear = (LinearLayout) findViewById(R.id.LinearView);
Button button = new Button(this);
button.setText("Button");
button.setOnClickListener(listener);
button.setLayoutParams(
new LayoutParams(
android.view.ViewGroup.LayoutParams.FILL_PARENT,
android.view.ViewGroup.LayoutParams.WRAP_CONTENT
)
);
linear.addView(button);
@Jérémy Reynaud指出,正如在这个回答中所描述的,在不改变其他可绘制对象(顶部、右侧和底部)的值的情况下设置左侧可绘制对象最安全的方法是使用setCompoundDrawablesWithIntrinsicBounds按钮中的先前值:
Drawable leftDrawable = getContext().getResources()
.getDrawable(R.drawable.yourdrawable);
// Or use ContextCompat
// Drawable leftDrawable = ContextCompat.getDrawable(getContext(),
// R.drawable.yourdrawable);
Drawable[] drawables = button.getCompoundDrawables();
button.setCompoundDrawablesWithIntrinsicBounds(leftDrawable,drawables[1],
drawables[2], drawables[3]);
所以你之前画的东西都会被保留。
添加一个Kotlin扩展
如果您要经常这样做,那么添加扩展可以使您的代码更具可读性。按钮扩展TextView;如果你想要更窄,使用按钮。
fun TextView.leftDrawable(@DrawableRes id: Int = 0) {
this.setCompoundDrawablesWithIntrinsicBounds(id, 0, 0, 0)
}
要使用扩展,只需调用
view.leftDrawable(R.drawable.my_drawable)
任何时候你需要清除,不要传递一个参数或做另一个名为removeDrawables的扩展
你可以使用setCompoundDrawables方法来做到这一点。请看这里的例子。我使用这个没有使用setBounds,它工作。两种方法你都可以试试。
更新:复制代码在这里,以防链接下降
Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
img.setBounds(0, 0, 60, 60);
txtVw.setCompoundDrawables(img, null, null, null);
or
Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
txtVw.setCompoundDrawablesWithIntrinsicBounds(img, null, null, null);
or
txtVw.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);