当前位置: 代码迷 >> 综合 >> Android 轮播里面的 RadioButton 的 自定义
  详细解决方案

Android 轮播里面的 RadioButton 的 自定义

热度:70   发布时间:2023-12-16 15:48:41.0

0: 首先可以自定义背景的颜色,图片,通过设置background="@drawable/background"

<RadioButton  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:button="@null"  android:background="@drawable/background"/>

1:然后需要在drawable 里面右键新建一个background的xml 文件,rootElement 为selector,



注意这里是判断是否为checked,然后再这里的drawable 后面填写相应的图片例如是@mipmap/start,( 我这里已经修改为了相应的shape的了。)


<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="true"  android:state_checked="true"  android:drawable="@drawable/shape_radio_checked"/><item android:state_enabled="true"  android:s
  相关解决方案