小编典典

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

all

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

这就是我到目前为止所拥有的。除了drawable,我什么都能做。

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);

阅读 155

收藏
2022-03-11

共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);
2022-03-11