如果我第一次设置了一个单选按钮,它可以正常工作。但如果我通过调用.setChecked(false)取消选择它;然后,即使我试图通过调用setChecked(true)来选择它,也不会取消选择前一个。
private void radiotype() {
count = //changed every time.
LinearLayout llques = (LinearLayout) mview.findViewById(R.id.llrbgRBD);
RadioGroup group = new RadioGroup(context);
group.setOrientation(RadioGroup.VERTICAL);
final RadioButton[] rb = new RadioButton[count];
List<String[]> ans = getAnswerList.getAns();
for (int j = 0; j < count; j++) {
rb[j] = new RadioButton(context);
rb[j].setVisibility(View.VISIBLE);
rb[j].setText("`enter code here`hi");
String a = rb[j].getText().toString();`enter code here`
Log.e("getAnswerList===a", "getAnswerList===>a" + a);
Log.e("getAnswerList", "getAnswerList===>" + ans.get(index)[0]);
if (a.equalsIgnoreCase(ans.get(index)[0])) {
rb[j].setChecked(true);
}
rb[j].setTextColor(Color.BLACK);
rb[j].setButtonDrawable(R.drawable.custom_radio_button);
group.addView(rb[j]);
}
llques.removeAllViews();
llques.addView(group);
group.setOnCheckedChangeListener(new OnCheckedChangeListener() {
public void onCheckedChanged(RadioGroup group, int checkedId) {
// checkedId is the RadioButton selected
//int c = count;
for(int i=0;i<count;i++){
rb[i].setChecked(false);
}
//
Log.v("id",""+checkedId);
for (int i = 0; i < count; i++) {
if (rb[i].getId() == checkedId){
rb[i].setChecked(true);
}
}
}
});
答案 0 :(得分:3)
我知道这已经很老了,但我遇到了同样的问题。解决方案是在之后通过addView()将RadioButton
添加到RadioGroup
来更改状态{{1}} 。我想这也是BAKUS试图用他的示例代码说的。
答案 1 :(得分:1)
RadioGroup确保仅检查一个RadioButton的方式基于那些RadioButton的ID。
尝试将其添加到您的第一个for循环中:
int uniqueId = j; // or whatever unique in this RadioGroup
rb[j].setId(uniqueId);
答案 2 :(得分:0)
在xml中使用它。
<RadioGroup
android:id="@+id/status_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_margin="5dp"
>
<RadioButton
android:id="@+id/open_radio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Open"
/>
<RadioButton
android:id="@+id/close_radio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Closed"
/>
<RadioButton
android:id="@+id/all_radio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Both"
/>
</RadioGroup>
然后在java中:
final RadioGroup status_group = (RadioGroup) findViewById(R.id.status_group);
//-- By default if you want open button to be checked, you can do that by using
status_group.check(R.id.open_radio);
status_group.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton radioButton = (RadioButton) findViewById(checkedId);
status_group.check(checkedId);
radio_status = radioButton.getText().toString().trim();
Log.v("radio_text--", radio_status);
}
});
答案 3 :(得分:0)
public void getqlist(int comp)
{
LinearLayout ll = (LinearLayout) findViewById(R.id.variable);
ll.removeAllViews();
xfiche=(ficheflag)?(fiche+1):fichetempo;
String titre="Formulaire "+xfiche+"- Question "+(comp+1)+"/"+taille;
TextView titreView =(TextView) findViewById(R.id.titre);
titreView.setText(titre);
int ii= Integer.parseInt(quest[comp][3].toString());
RadioButton[] rb = new RadioButton[ii];
RadioGroup rg = new RadioGroup(this);
rg.setOrientation(RadioGroup.VERTICAL);
int isel=Integer.parseInt(resp[comp][2].toString())-1;
int bid=254211; // You give any integer ID
for(int i=0; i<ii; i++){
rb[i] = new RadioButton(this);
rb[i].setText(quest[comp][i+5].toString());
if (i==isel)
rb[i].setId(bid); // You capure the previously selected radio button
rg.addView(rb[i]);
}
ll.addView(rg);//you add the whole RadioGroup to the layout
RadioButton tb=(RadioButton) findViewById(bid); // find the button by the Id
tb.toggle(); // toggle it after diplaying the group
}
答案 4 :(得分:0)
这样做 -
if (a.equalsIgnoreCase(ans.get(index)[0])) {
rb[j].setChecked(true);
}
后
group.addView(rb[j]);
而不是在addView之前检查它。
让它像 -
private void radiotype() {
count = //changed every time.
LinearLayout llques = (LinearLayout) mview.findViewById(R.id.llrbgRBD);
RadioGroup group = new RadioGroup(context);
group.setOrientation(RadioGroup.VERTICAL);
final RadioButton[] rb = new RadioButton[count];
List<String[]> ans = getAnswerList.getAns();
for (int j = 0; j < count; j++) {
rb[j] = new RadioButton(context);
rb[j].setVisibility(View.VISIBLE);
rb[j].setText("`enter code here`hi");
String a = rb[j].getText().toString();`enter code here`
Log.e("getAnswerList===a", "getAnswerList===>a" + a);
Log.e("getAnswerList", "getAnswerList===>" + ans.get(index)[0]);
rb[j].setTextColor(Color.BLACK);
rb[j].setButtonDrawable(R.drawable.custom_radio_button);
group.addView(rb[j]);
if (a.equalsIgnoreCase(ans.get(index)[0])) {
rb[j].setChecked(true);
}
}
llques.removeAllViews();
llques.addView(group);
group.setOnCheckedChangeListener(new OnCheckedChangeListener() {
public void onCheckedChanged(RadioGroup group, int checkedId) {
// checkedId is the RadioButton selected
//int c = count;
for(int i=0;i<count;i++){
rb[i].setChecked(false);
}
//
Log.v("id",""+checkedId);
for (int i = 0; i < count; i++) {
if (rb[i].getId() == checkedId){
rb[i].setChecked(true);
}
}
}
});
这个 也适用于 。