我有一个广播组,有 2 个选项,即男性和女性。我想将 RadioButton Male 作为 int number "1" 和 Female 作为 "2" 保存到我的数据库中。但我真的不知道如何实现它。如果有可能有人可以在这个问题上启发我吗?先感谢您。
<RadioGroup
android:id="@+id/radio_sex"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/email_address"
android:layout_alignTop="@+id/textView5"
android:orientation="vertical" >
<RadioButton
android:id="@+id/radio_male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Male" />
<RadioButton
android:id="@+id/radio_female"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Female" />
</RadioGroup>