最近小编在找工作各种忙,所以这博客一直都没有更新,这两天刚入职,开发过程中需要用到一个单选项的UI选择,首先本人感觉像这种RadioButton在学习做题的App上见比较多,一般的app项目用的都比较少,当然了这只是我个人的感觉(孤陋寡闻),公司开发的一款App需要用到这种UI效果,所以就整理了一个非常简单的demo,仅供大家参考,大神就不要吐槽了,这只是一个小小知识点的总结,俗话说:“不积小流无以成江”,所以我就积跬步致千里,知识点都是一点点积累的,所以我就一点一点写能帮助大家当然是更好,反正就是提升自己,好了废话不多说代码贴上:
2,在values目录中的styles.xml中添加一个style属性(名字自定义,个人定义为MyRadioBtn)其中的rediobutton_select就是上面的rediobutton_select.xml选择器
效果图如下:
1,drawable目录下新建一个rediobutton_select.xml文件(其中的两个图片文件根据自己需要进行设计)
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_checked="true" android:drawable="@drawable/agree_check"/>
<item android:state_checked="false" android:drawable="@drawable/agree_default"/>
</selector>
2,在values目录中的styles.xml中添加一个style属性(名字自定义,个人定义为MyRadioBtn)其中的rediobutton_select就是上面的rediobutton_select.xml选择器
<style name="MyRadioBtn">
<item name="android:button">@drawable/rediobutton_select</item>
</style>
3,在控件布局文件中直接使用style属性,就是上面定义的MyRadioBtn的style属性
<RadioButton
android1:id="@+id/radio1"
style="@style/MyRadioBtn"
android1:layout_width="wrap_content"
android1:layout_height="wrap_content"
android1:text="RadioButton" />
效果图如下:
小小知识点,希望大家多多吐槽,共同进步,编码的路还很长我们要一步一步走