如何从数组字符串创建的单选组中删除单选按钮
How to remove Radiobuttons from RadiopGroup Created by Array String
我是 Android 的新手,正在创建一个将使用 RadioButtons 进行选择的应用程序并做一些工作我能够从字符串数组创建 RadioButons 并能够从选定的 RadioButtons 获取 id 但现在我需要选择后从 RadioGroup 中删除 RadioButtons
这是我正在使用的代码
for(int i =0; i<ab.length;i++)
{
RadioButton radioButtonView = new RadioButton(this);
radioButtonView.setText(ab[i]);
radioGroup.addView(radioButtonView, p);
}
我能够将新数组映射到 RadioButtons 但无法删除旧数组 (RadioButtons)
请帮忙,所以我会继续我的应用程序
谢谢
使用RadioGroup.removeViewAt(int index)
或RadioGroup.removeView(View view)
或RadioGroup.removeViews(int start, int count)
我是 Android 的新手,正在创建一个将使用 RadioButtons 进行选择的应用程序并做一些工作我能够从字符串数组创建 RadioButons 并能够从选定的 RadioButtons 获取 id 但现在我需要选择后从 RadioGroup 中删除 RadioButtons
这是我正在使用的代码
for(int i =0; i<ab.length;i++)
{
RadioButton radioButtonView = new RadioButton(this);
radioButtonView.setText(ab[i]);
radioGroup.addView(radioButtonView, p);
}
我能够将新数组映射到 RadioButtons 但无法删除旧数组 (RadioButtons) 请帮忙,所以我会继续我的应用程序 谢谢
使用RadioGroup.removeViewAt(int index)
或RadioGroup.removeView(View view)
或RadioGroup.removeViews(int start, int count)