更改按钮中的图像

时间:2016-08-11 08:07:31

标签: c# android xamarin

如何更改按钮中的图像?在我的情况下,如何更改"@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" />

1 个答案:

答案 0 :(得分:1)

我想要以编程方式进行更改。当您使用drawableRight属性设置图像时,您必须:

wifiButton.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.newImage, 0);

希望它有所帮助!