创建显示工作日的切换按钮组

时间:2016-03-01 10:17:23

标签: android xml

  

我想创建一个与下图完全相同的切换按钮,并在同一行显示所有切换按钮,为报警事件选择工作日。我不知道这个。请帮忙。

enter image description here

1 个答案:

答案 0 :(得分:1)

这是我试过的无线电组的一个例子。也许它对你有帮助。只看一次。

您的主xml文件

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#655EF9"
android:orientation="horizontal">

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/radiobtn_bck"
    android:button="@null"
    android:checked="true"
    android:gravity="center"
    android:text="S" />

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:background="@drawable/radiobtn_bck"
    android:button="@null"
    android:gravity="center"
    android:text="M" />

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:background="@drawable/radiobtn_bck"
    android:gravity="center"
    android:button="@null"
    android:text="T" />

</LinearLayout>

此处为drawable文件夹中的radiobtn_bck xml

<?xml version="1.0" encoding="utf-8"?>
<item android:drawable="@drawable/bg_shape" android:state_checked="true" />
<item android:drawable="@drawable/bg_shape" android:state_pressed="true" />
<item android:drawable="@drawable/bg_shape" android:state_focused="true" />
<item android:drawable="@drawable/bg_shape_purple" android:state_checked="false" />

bg_shape.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"

android:shape="oval">
<solid android:color="#ffffff" />
<size
android:width="40dp"
android:height="40dp" />

bg_shape_purple.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"

android:shape="oval">
<solid android:color="#655EF9" />
<size
android:width="40dp"
android:height="40dp" />