在 Android 中动态添加 RadioButton 控件可以通过以下步骤实现:
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
</RadioGroup>
RadioGroup radioGroup = findViewById(R.id.radioGroup);
RadioButton radioButton1 = new RadioButton(this);
radioButton1.setText("Option 1");
radioButton1.setId(1); // 设置 RadioButton 的唯一标识
RadioButton radioButton2 = new RadioButton(this);
radioButton2.setText("Option 2");
radioButton2.setId(2); // 设置 RadioButton 的唯一标识
// 将 RadioButton 控件添加到 RadioGroup 中
radioGroup.addView(radioButton1);
radioGroup.addView(radioButton2);
以上代码中,我们首先获取 RadioGroup 控件的实例,然后创建两个 RadioButton 控件,并设置它们的文本和唯一标识,最后将它们添加到 RadioGroup 中。
通过以上步骤,我们就可以在 Android 应用中动态添加 RadioButton 控件了。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。