如何创建一个真正的按钮的无线电组?

时间:2012-11-25 07:01:05

标签: android button radio-button

我想创建一个“真实”按钮的按钮组? 我想显示用户按钮,其中包含他参加的选项:是,否和Meybe。 我想用这个显示器的按钮。 怎么做?

1 个答案:

答案 0 :(得分:0)

只需在drawable文件夹中创建一个选择器xml文件

checkbox_background.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/checkbox_active" />
      <item android:state_checked="false" android:drawable="@drawable/checkbox_inactive" />
</selector>

并将此背景应用于您的单选按钮

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