一尘不染

如何在Android按钮上以编程方式设置drawableLeft?

java android

我正在动态创建按钮。我首先使用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);

阅读 359

收藏
2020-03-16

共1个答案

一尘不染

你可以使用该setCompoundDrawables方法执行此操作。请参阅此处的示例。我在不使用的情况下使用了setBounds它,并且效果很好。你可以尝试任何一种方式。

更新:如果链接断开,请在此处复制代码

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
img.setBounds(0, 0, 60, 60);
txtVw.setCompoundDrawables(img, null, null, null);

要么

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
txtVw.setCompoundDrawablesWithIntrinsicBounds(img, null, null, null);

要么

txtVw.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);
2020-03-16