我有一个TableLayout,并且在每行的第三列中我想放置一个无线电组。 我像这样建立了RadioButtons:
rg = (RadioGroup) findViewById(R.id.radioGroup1);
for (int k = 0; k < size; k++) {
rb[k] = new RadioButton(context);
rg.addView(rb[k]);
}
然而,这导致我的应用程序崩溃,任何想法?
答案 0 :(得分:4)
您正在构建长度为megethos
的基本数组,但您的循环使用的长度为size
。如果megethos
和size
是不同的值,则可能会导致许多不同类型的错误...但所有这些都是多余的,因为RadioGroup会使此数组保持最新状态。
我会尝试这样的事情:
RadioGroup group = (RadioGroup) findViewById(R.id.radioGroup1);
RadioButton button;
for(int i = 0; i < 3; i++) {
button = new RadioButton(this);
button.setText("Button " + i);
group.addView(button);
}
如果您想引用index
处的按钮:
group.getChildAt(index);
另外请始终发布您的logcat错误,它告诉我们完全出了什么问题以及在哪里查看。否则我们必须这样猜测。
<强>更新强>
错误是因为您尝试将相同的按钮添加到两个不同的布局:
tr[k].addView(rb[k]);
rg.addView(rb[k]);
一个视图只能有一个父视图。据我所知,你不能将RadioGroup分成多个视图,而不需要先进行大量的自定义。但是,ListView已经具有内置功能setChoiceMode(),其行为类似于RadioGroup:
List<String> list = new ArrayList<String>();
list.add("one");
list.add("two");
list.add("three");
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_checked, list);
ListView listView = (ListView) findViewById(R.id.list);
listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
listView.setAdapter(adapter);
您可以轻松调整simple_list_item_checked
以显示SSID和信号强度。希望有所帮助。 (如果等待的时间足够长,imran khan可能会通过图形更改来剪切和粘贴我的答案,然后再将其声称为自己的答案。)
答案 1 :(得分:0)
我创建了一个演示应用程序,其中我动态添加了单选按钮,并处理了单击事件。
公共类MainActivity扩展了AppCompatActivity {
RadioGroup radioGroup2;
ArrayList<String> buttonNames;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
radioGroup2 = (RadioGroup) findViewById(R.id.radioGroup2);
buttonNames = new ArrayList<>();
buttonNames.add("No Tip");
buttonNames.add("10%");
buttonNames.add("20%");
buttonNames.add("30%");
radioGroup2.setWeightSum(Float.parseFloat(buttonNames.size() + ""));
radioGroup2.setBackgroundColor(Color.BLUE);
for (int i = 0; i < buttonNames.size(); ++i) {
RadioButton radioButton = new RadioButton(this);
radioButton.setId(i);
RadioGroup.LayoutParams childParam1 = new RadioGroup.LayoutParams(0, LinearLayout.LayoutParams.MATCH_PARENT, 1f);
childParam1.setMarginEnd(2);
radioButton.setGravity(Gravity.CENTER);
radioButton.setLayoutParams(childParam1);
radioButton.setBackground(null);
radioButton.setText(buttonNames.get(i));
radioButton.setTextColor(Color.BLUE);
radioButton.setBackgroundColor(Color.WHITE);
radioButton.setButtonDrawable(null);
if (buttonNames.get(i).equals("20%")) {
radioButton.setChecked(true);
radioButton.setBackgroundColor(Color.BLUE);
radioButton.setTextColor(Color.WHITE);
}
radioGroup2.addView(radioButton, childParam1);
}
radioGroup2.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup radioGroup, int i1) {
RadioButton button = null;
for (int i = 0; i < buttonNames.size(); ++i) {
if (i1 == i) {
button = (RadioButton) findViewById(i1);
button.setChecked(true);
button.setBackgroundColor(Color.BLUE);
button.setTextColor(Color.WHITE);
Toast.makeText(getApplicationContext(), button.getText() + " checked", Toast.LENGTH_SHORT).show();
} else {
button = (RadioButton) findViewById(i);
button.setChecked(false);
button.setBackgroundColor(Color.WHITE);
button.setTextColor(Color.BLUE);
}
}
}
});
}
}