如何更改按钮中的图像?在我的情况下,如何更改"@drawable/notConnected"
与另一个图像?有没有办法做到这一点?
这是我的xml
<Button
android:text="CONNECTION"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableRight="@drawable/notConnected"
android:id="@+id/wifiButton" />
答案 0 :(得分:1)
我想要以编程方式进行更改。当您使用drawableRight
属性设置图像时,您必须:
wifiButton.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.newImage, 0);
希望它有所帮助!