如何在android中以编程方式更改复选框边框颜色?

时间:2012-07-02 06:42:07

标签: android

在我的XML中包含一个CheckBox。如何在android中以编程方式更改复选框边框颜色。

我的样本ScreenShot就在这里 ScreenShot

感谢。

1 个答案:

答案 0 :(得分:3)

你可以设置

check.setButtonDrawable(mContext.getResources().getDrawable(
                    R.drawable.radio));

radio.xml中,您可以为复选框设置任何背景。

在radio.xml中

<?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
     <item android:drawable="@drawable/option_unselected" android:state_checked="false"/>
     <item android:drawable="@drawable/option_selected" android:state_checked="true"/>
 </selector>

此处option_selected和option_selected是选定和未选中状态的图形。

了解更多内容,您可以查看http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList