我有一個收音機組,有2個選項,分別是男性和女性。 我想將RadioButton Male保存爲int數字「1」,女性保存爲我的數據庫中的「2」。 但我真的不知道如何實現它。 如果有人可以在這個問題上啓發我嗎? 預先感謝您。如何將單選按鈕文本更改爲int?
<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>
你有沒有考慮取的單選按鈕的索引你RadioGroup中?如果沒有,也許你需要看到這個[問題](http://stackoverflow.com/questions/6440259/how-to-get-the-selected-index-of-a-radiogroup-in-android)。 –
感謝Lokesh Mehra,我在這個問題中得到了一些非常有用的信息。 –