我知道很多答案都可以在互联网上找到,但似乎没有一个对我有用。
我的布局中有两个单选按钮,我希望一次只能选择一个。我不在布局中使用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>
任何帮助都将受到高度赞赏