Android studio性别选择按钮
时间: 2023-08-14 14:07:26 浏览: 306
仿照ios性别选择按钮,效果不错
5星 · 资源好评率100%
您可以在 Android Studio 中使用 RadioButton 来实现性别选择按钮。以下是简单的步骤:
1. 在您的布局文件中添加 RadioButton:
```
<RadioGroup
android:id="@+id/radio_group_gender"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/radio_button_male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Male" />
<RadioButton
android:id="@+id/radio_button_female"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Female" />
</RadioGroup>
```
2. 在您的活动中获取 RadioButton 的引用:
```
RadioButton radioButtonMale = findViewById(R.id.radio_button_male);
RadioButton radioButtonFemale = findViewById(R.id.radio_button_female);
```
3. 您可以在您的活动中使用以下代码获取所选 RadioButton 的值:
```
RadioGroup radioGroupGender = findViewById(R.id.radio_group_gender);
int selectedRadioButtonId = radioGroupGender.getCheckedRadioButtonId();
if (selectedRadioButtonId == R.id.radio_button_male) {
// Male option is selected
} else if (selectedRadioButtonId == R.id.radio_button_female) {
// Female option is selected
}
```
希望这可以帮助您实现性别选择按钮。
阅读全文