欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  技术分享

Android自定义RadioButton的样式_修改安卓默认的RadioButton样式

程序员文章站 2022-03-01 16:03:38
...

在程序开发中、Android系统控件提供的外观往往距离我们要求的有一定差距、比如今天我就遇到了

那么这个时候我们可以通过一些方法来修改Android自带的样式、今天主要和大家讲一下RadioButton 的样式

方法也很简单、只需要给 RadioButton 定义一个selector 命名为 bg_radiobutton就可以了、代码如下


<?xml version="1.0" encoding="utf-8"?>
<selector 
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item 
        android:drawable="@drawable/icon_choice" 
        android:state_checked="false"/>
    <item 
        android:drawable="@drawable/icon_choose" 
        android:state_checked="true"/>
</selector>
其中android:state_checked="false"就是指在没有选中的时候的样子、你可以指定一张图片


其中android:state_checked="true"就是指在选中的时候的样子、同样你也可以指定一张图片


那么接下来就是在自己的RadioButton 里面引用了、这里需要注意的是

千万不要通过 style 来引用、也不要通过background 来引用、至于有没有问题我没有测试过、哥们可以自己测试

那么我的引用方法是这样的、代码如下


<RadioButton
            android:id="@+id/agreement_radio_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:button="@drawable/bg_radiobutton"
            android:layout_marginLeft="30dp"
            android:layout_centerVertical="true" />
好了、这样就可以在RadioButton 里面引用自己的样式了