为不同状态的drawable中的每个项目定义了可用给定png的drawable,如果想要在该项目的png周围设置边框,该怎么做?重新削减png不是这里的选择。
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:state_focused="true"
android:drawable="@drawable/box_checked_png” />
<item android:state_checked="false" android:state_focused="true"
android:drawable="@drawable/white_box_png” />
<item android:state_checked="false"
android:drawable="@drawable/white_box_png” />
<item android:state_checked="true"
android:drawable="@drawable/box_checked_png” />
</selector>
答案 0 :(得分:0)
我认为最好的方法是在复选框中添加背景。
这是一个矩形drawable background.xml(放入res / drawable文件夹)。 假设你正在制作这样的形状:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<solid android:color="#ffffff" />
<stroke android:width="1dip" android:color="#4fa5d5"/>
</shape>
如果您有复选框,则只需设置之前的背景:
<CheckBox android:text="Some me" android:background="@drawable/background"/>