您的位置:首页 > Web前端 > CSS

RadioButton自定义样式

2016-05-12 16:41 519 查看
layout

<RadioButton
android:id="@+id/adr_add_female"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/female"
style="@style/CustomRadioButtonTheme"/>


styles.xml

<style name="CustomRadioButtonTheme" parent="@android:style/Widget.CompoundButton.RadioButton">
<item name="android:button">@drawable/adr_rb</item>
</style>


drawable

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@mipmap/point_circle" android:state_checked="true" />
<item android:drawable="@mipmap/not_point_circle" android:state_checked="false" />
<item android:drawable="@mipmap/not_point_circle" />
</selector>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: