赞
踩
安卓默认的单选按钮带圆圈,和美工的效果不对,所以要改成自定义的。
自定义 单选按钮
xml代码如下
- <RadioGroup
- android:layout_marginTop="10dp"
- android:layout_gravity="start"
- android:id="@+id/radioGroup"
- android:orientation="horizontal"
- android:checkedButton="@id/radioButton1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
-
- <RadioButton
- android:button="@null"
- android:gravity="center"
- android:id="@+id/radioButton1"
- android:paddingHorizontal="10dp"
- android:background="@drawable/background_button"
- android:textColor="@drawable/background_buttontext"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="预设1"/>
-
- <RadioButton
- android:layout_marginStart="10dp"
- android:button="@null"
- android:gravity="center"
- android:paddingHorizontal="10dp"
- android:background="@drawable/background_button"
- android:textColor="@drawable/background_buttontext"
- android:id="@+id/radioButton2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="预设2"/>
-
- <RadioButton
- android:layout_marginStart="10dp"
- android:button="@null"
- android:gravity="center"
- android:paddingHorizontal="10dp"
- android:background="@drawable/background_button"
- android:textColor="@drawable/background_buttontext"
- android:id="@+id/radioButton3"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="预设3"/>
- </RadioGroup>
background_button.xml
- <?xml version="1.0" encoding="utf-8"?>
- <selector xmlns:android="http://schemas.android.com/apk/res/android">
- <item android:state_checked="true">
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
- <solid android:color="#bd9668"/>
- <corners android:radius="8dp"/>
- </shape>
- </item>
- <item>
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
- <solid android:color="@color/white"/>
- <corners android:radius="8dp"/>
- </shape>
- </item>
- </selector>
background_buttontext.xml
- <?xml version="1.0" encoding="utf-8"?>
- <selector xmlns:android="http://schemas.android.com/apk/res/android">
- <item android:color="@color/white" android:state_checked="true"/>
- <item android:color="@color/black"/>
- </selector>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。