如何以编程方式在Android上设置可绘制的Left按钮?
2022-08-31 04:21:50
我正在动态创建按钮。我首先使用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);