在android中选择了两个收音机按钮

时间:2017-05-11 16:11:20

标签: android

我知道很多答案都可以在互联网上找到,但似乎没有一个对我有用。

我的布局中有两个单选按钮,我希望一次只能选择一个。我不在布局中使用radiogroup。我尝试使用.setChecked条件,但它没有给我解决方案

     <LinearLayout
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="10dp"
                            android:layout_marginRight="10dp">

                            <RadioButton
                                android:id="@+id/RadioButtontop"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_marginRight="2dp" />

                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:text="@string/text_weekOff" />

                        </LinearLayout>

 <LinearLayout
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="10dp"
                        android:layout_marginRight="10dp">

                        <RadioButton
                            android:id="@+id/radioButton1"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginRight="2dp" />

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:text="@string/text_weekOff" />

                    </LinearLayout>

任何帮助都将受到高度赞赏

0 个答案:

没有答案