我想使用数组适配器创建一组单选按钮。我想获取选择其中一个的信息,并取消选择任何按钮的其他按钮。任何人都可以帮我这样做< / p>
答案 0 :(得分:0)
请尝试以下方法:
<RadioGroup
android:id="@+id/radio"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/radioButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
android:gravity="center"
android:text="Free Lancer"
android:textSize="15dp" />
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
android:gravity="center"
android:text="Firm/companies"
android:textSize="15dp" />
</RadioGroup>