自定义RadioButton样式1
系统
1388 0
主要是布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<RadioGroup android:gravity="center"
android:layout_gravity="bottom"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/btn_0"
android:textSize="17.0sp"
android:textColor="@android:color/black"
android:text="搜索微博"
android:layout_weight="1"
android:button="@null"
android:checked="true"
android:drawableLeft="@drawable/state_radio"
android:background="@drawable/state_btn"
android:gravity="center_vertical"
>
</RadioButton>
<RadioButton
android:id="@+id/btn_1"
android:textSize="17.0sp"
android:textColor="@android:color/black"
android:text="搜索用户"
android:layout_weight="1"
android:button="@null"
android:drawableLeft="@drawable/state_radio"
android:background="@drawable/state_btn"
android:gravity="center_vertical"
>
</RadioButton>
</RadioGroup>
</LinearLayout>
其中state_radio.xml
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android"
>
<item
android:state_focused="false"
android:state_checked="false"
android:state_pressed="false"
android:drawable="@drawable/bg_radio"
>
</item>
<item
android:state_focused="false"
android:state_checked="true"
android:state_pressed="false"
android:drawable="@drawable/bg_radio_selected"
>
</item>
<item
android:state_focused="true"
android:state_checked="false"
android:state_pressed="false"
android:drawable="@drawable/bg_radio_onfocus"
>
</item>
<item
android:state_focused="true"
android:state_checked="true"
android:state_pressed="false"
android:drawable="@drawable/bg_radio_onfocus_selected"
>
</item>
</selector>
state_btn.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_window_focused="false"
android:drawable="@drawable/bg_btn"/>
<item android:state_focused="true" android:state_pressed="true"
android:drawable="@drawable/bg_btn_selected" />
<item android:state_focused="false" android:state_pressed="true"
android:drawable="@drawable/bg_btn_selected" />
</selector>
上面的写法有点拖沓,采用style可能会更简单:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomTheme" parent="android:Theme">
<item name="android:radioButtonStyle">@style/RadioButton</item>
</style>
<style name="RadioButton" parent="@android:style/Widget.CompoundButton.RadioButton">
<item name="android:button">@drawable/radio</item>
</style>
</resources>
radio.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:state_window_focused="false"
android:drawable="@drawable/radio_hover" />
<item android:state_checked="false" android:state_window_focused="false"
android:drawable="@drawable/radio_normal" />
<item android:state_checked="true" android:state_pressed="true"
android:drawable="@drawable/radio_active" />
<item android:state_checked="false" android:state_pressed="true"
android:drawable="@drawable/radio_active" />
<item android:state_checked="true" android:state_focused="true"
android:drawable="@drawable/radio_hover" />
<item android:state_checked="false" android:state_focused="true"
android:drawable="@drawable/radio_normal_off" />
<item android:state_checked="false" android:drawable="@drawable/radio_normal" />
<item android:state_checked="true" android:drawable="@drawable/radio_hover" />
</selector>
实现分断Button,模仿MIUI设置页面顶部Button
http://blog.csdn.net/hudan2714/article/details/8228173
自定义RadioButton样式1
更多文章、技术交流、商务合作、联系博主
微信扫码或搜索:z360901061
微信扫一扫加我为好友
QQ号联系: 360901061
您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。
【本文对您有帮助就好】元