Android Studio —— RadioButton、CheckBox

效果

     RadioButton效果为RadioGroup组管理。

     CheckBox效果为List管理。


代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
要在Android Studio中使用RadioButton,您可以按照以下步骤进行操作: 1. 在您的布局文件中添加RadioButton控件。例如,您可以在LinearLayout中添加几个RadioButton选项: ```xml <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <RadioButton android:id="@+id/radio_option1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Option 1" /> <RadioButton android:id="@+id/radio_option2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Option 2" /> <RadioButton android:id="@+id/radio_option3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Option 3" /> </LinearLayout> ``` 2. 在您的活动或片段中,找到这些RadioButton控件的引用,并设置适当的监听器来处理选中状态的更改。 ```java public class MainActivity extends AppCompatActivity { private RadioButton option1, option2, option3; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); option1 = findViewById(R.id.radio_option1); option2 = findViewById(R.id.radio_option2); option3 = findViewById(R.id.radio_option3); option1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (isChecked) { // 处理选中Option 1的情况 } } }); option2.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (isChecked)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

信必诺

嗨,支持下哥们呗。

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值