Radiobutton的样式⾃定义
Radiobutton的样式⾃定义⽆⾮就是style,然后在radiobutton中引⽤。
在style⾥⾯有相关属性:
background  来设置radiobutton的背景
button            来设置radiobutton的⼩框框,  当为null的时候,左边的按钮图⽚了
textcolor        来设置radiobutton的⽂字颜⾊
⾃定义的第⼀种style:  只修改radiobutton左边的按钮图⽚
<style name="CustomRadioBtn">
<item name="android:button">@drawable/mycustome_radio_selctor</item>
</style>
mycustome_radio_selctor xml的代码:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="schemas.android/apk/res/android">
<item android:drawable="@drawable/enable_on_pressed" android:state_checked="true" android:state_enabled="true"
android:state_pressed="true"/>
<item android:drawable="@drawable/enable_off_pressed" android:state_checked="false"
android:state_enabled="true" android:state_pressed="true"/>
<item android:drawable="@drawable/enable_on" android:state_checked="true" android:state_enabled="true"/>    <item android:drawable="@drawable/enable_off" android:state_checked="false" android:state_enabled="true"/>    <item android:drawable="@drawabl
e/disabled_on" android:state_checked="true" android:state_enabled="false"/>    <item android:drawable="@drawable/disabled_off" android:state_checked="false" android:state_enabled="false"/> </selector>
第⼆种⾃定义样式style:  去除radiobutton左边的按钮图⽚,修改背景图
<style name="CustomRadioBtn2">
<item name="android:gravity">center</item>
<item name="android:background">@drawable/rb_nobtn_selector</item>
<item name="android:button">@null</item>
</style>
rb_nobtn_selector xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="schemas.android/apk/res/android">
<item android:drawable="@drawable/rb_pressed_bg" android:state_checked="true"></item>
htmlradio的text出不来<item android:drawable="@drawable/rb_normal_bg" android:state_checked="false"></item>
</selector>
还可以⾃定义textcolor,⼀样的⽅法啦。
顺便提⼀下 Selector state状态对应说明:
android:drawable 放⼀个drawable资源
android:state_pressed 是否按下,如⼀个按钮触摸或者点击。
android:state_focused 是否取得焦点,⽐如⽤户选择了⼀个⽂本框。
android:state_checkable 组件是否能被check。如:RadioButton是可以被check的。android:state_checked 被checked了,如:⼀个RadioButton可以被check了。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。