Android:如何在一个复选框视图中创建两个复选框

时间:2014-08-06 21:28:16

标签: android checkbox

我需要在linerlayout中设置一个复选框,如下所示:

Item1 [][]
Item2 [][]
Item3 [][]

等等,我如何添加另一个框来检查?

<LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <CheckBox
                android:id="@+id/checkBox1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:button="@null"
                android:drawableRight="?android:attr/listChoiceIndicatorMultiple"
                android:text="S-" />

        </LinearLayout>

我正在制作它以便它有三个选择,左边可以勾选,右边可以,或者两个

1 个答案:

答案 0 :(得分:0)

您只需将其添加到布局中并使方向水平:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">

            <CheckBox
                android:id="@+id/checkBox1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:button="@null"
                android:drawableRight="?android:attr/listChoiceIndicatorMultiple"
                android:text="S-" />

            <CheckBox
                android:id="@+id/checkBox2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:button="@null"
                android:drawableRight="?android:attr/listChoiceIndicatorMultiple"
                android:text="" />

        </LinearLayout>