1

私はアンドロイドが初めてです..

グループのラジオボタンのチェックを外す際に問題に直面しています....

私の問題は....

私はクイズベースのアプリを開発しています。ユーザーがこのアプリのラジオ ボタンを開くと、1 つのクエストと 4 つのオプション (ラジオ ボタン) が表示されますが、ユーザーが 1 つのクエストに回答し、次のクエストのラジオ ボタンに進むと、問題が発生します。チェックを外したい/すべてのクエストのラジオ ボタンをリセットするにはどうすればよいですか?

私が直面しているもう1つの問題は...ユーザーが最初のボタンを選択し、再びオプションを変更したい場合、別のボタンを選択して選択できないはずです..

これを実装する方法は?

どんな助けでも大歓迎です。

    protected void onPostExecute(String file_url) {
        pDialog.dismiss();
     ques1=new ArrayList<String>(new ArrayList<String>(ques1));
        //  j=0;
        TextView txtque = (TextView) findViewById(R.id.que_txt); 
        txtque.setText(ques1.get(j));
answ1=new ArrayList<String>(new ArrayList<String>(answ1));
        btn_practice1.setText(answ1.get(0));
        btn_practice2.setText(answ1.get(1));
        btn_practice3.setText(answ1.get(2));
        btn_practice4.setText(answ1.get(3));
        btn_practicerg.setOnCheckedChangeListener(new OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) { 
                RadioButton radioButton = (RadioButton) findViewById(checkedId);   // error       
                                                                          //  is here 205 line..
                String temp = radioButton.getText().toString();
                crrtans=new ArrayList<String>(new ArrayList<String>(crrtans));
                if (temp.equals(crrtans.get(l))){
                TextView txtRadio = (TextView) findViewById(R.id.rdtxt); 
                txtRadio.setText("" + radioButton.getText() + " IS CORRECT");   
                txtRadio.setTextColor(Color.parseColor("#008000"));
            }else{
                //RadioButton radioButton1 = (RadioButton) findViewById(checkedId);
                   // Toast.makeText(Question.this, "" + radioButton.getText(), 2000).show(); 
                    TextView txtRadio = (TextView) findViewById(R.id.rdtxt); 
                    txtRadio.setText("" + radioButton.getText() + "is INCORRECT");
                    txtRadio.setTextColor(Color.parseColor("#FF0000"));
            }
            }
     });
    Button nextBtn = (Button) findViewById(R.id.nxt_btn);
    nextBtn.setOnClickListener(new Button.OnClickListener(){
      public void onClick(View v){
    //    btn_practicerg.clearCheck();
          if (j == ques1.size() -1) {
                //finish();
                showAlert1();
            }
          else{ 
            ++j;
            TextView txtque = (TextView) findViewById(R.id.que_txt); 
            txtque.setText(ques1.get(j));
            ++k;
            btn_practice1.setText(answ1.get((k*4)+0));
            btn_practice2.setText(answ1.get((k*4)+1));
            btn_practice3.setText(answ1.get((k*4)+2));
            btn_practice4.setText(answ1.get((k*4)+3));
          }
          btn_practicerg.clearCheck();
          btn_practicerg.setOnCheckedChangeListener(new OnCheckedChangeListener() {
                @Override
                public void onCheckedChanged(RadioGroup group, int checkedId) { 
                    RadioButton radioButton = (RadioButton) findViewById(checkedId);
                    String temp = radioButton.getText().toString();
                    l++;
                    if (temp.equals(crrtans.get(l))){
                    TextView txtRadio = (TextView) findViewById(R.id.rdtxt); 
                    txtRadio.setText("" + radioButton.getText() + " IS CORRECT");   
                    txtRadio.setTextColor(Color.parseColor("#008000"));
                }else{
                    //RadioButton radioButton1 = (RadioButton) findViewById(checkedId);
                       // Toast.makeText(Question.this, "" + radioButton.getText(), 2000).show(); 
                        TextView txtRadio = (TextView) findViewById(R.id.rdtxt); 
                        txtRadio.setText("" + radioButton.getText() + " IS INCORRECT");
                        txtRadio.setTextColor(Color.parseColor("#FF0000"));
                }
                }      
         });
     }
});   
    Button previousbtn = (Button) findViewById(R.id.prv_btn);
    previousbtn.setOnClickListener(new Button.OnClickListener(){
    public void onClick(View v){
        if (j <= 0) {
            Toast.makeText(Question.this, "First Question",Toast.LENGTH_SHORT).show();
            } else {
            --j;
            TextView txtque = (TextView) findViewById(R.id.que_txt); 
            txtque.setText(ques1.get(j));
            --k;
            btn_practice1.setText(answ1.get((k*4)+0));
            btn_practice2.setText(answ1.get((k*4)+1));
            btn_practice3.setText(answ1.get((k*4)+2));
            btn_practice4.setText(answ1.get((k*4)+3));
            }
         btn_practicerg.clearCheck();
         btn_practicerg.setOnCheckedChangeListener(new OnCheckedChangeListener() {
                @Override
                public void onCheckedChanged(RadioGroup group, int checkedId) { 
                    RadioButton radioButton = (RadioButton) findViewById(checkedId);
                    String temp = radioButton.getText().toString();
                    l--;
                    if (temp.equals(crrtans.get(l))){
                    TextView txtRadio = (TextView) findViewById(R.id.rdtxt); 
                    txtRadio.setText("" + radioButton.getText() + " IS CORRECT");   
                    txtRadio.setTextColor(Color.parseColor("#008000"));
                }else{
                    //RadioButton radioButton1 = (RadioButton) findViewById(checkedId);
                       // Toast.makeText(Question.this, "" + radioButton.getText(), 2000).show(); 
                        TextView txtRadio = (TextView) findViewById(R.id.rdtxt); 
                        txtRadio.setText("" + radioButton.getText() + " IS INCORRECT");
                        txtRadio.setTextColor(Color.parseColor("#FF0000"));
                }
                }      
         });
         }
    });
    }

ログキャット

            E/AndroidRuntime(893): FATAL EXCEPTION: main
            E/AndroidRuntime(893): java.lang.ArrayIndexOutOfBoundsException
            E/AndroidRuntime(893):  at java.util.ArrayList.get(ArrayList.java:313)
            E/AndroidRuntime(893):  at 
         com.example.finalpractice.Question$LoadQuestions$2$1.onCheckedChanged(Question.java:243)
            E/AndroidRuntime(893):  at 
         android.widget.RadioGroup.setCheckedId(RadioGroup.java:172)
            E/AndroidRuntime(893):  at android.widget.RadioGroup.access$600(RadioGroup.java:52)
            E/AndroidRuntime(893):  at 
         android.widget.RadioGroup$CheckedStateTracker.onCheckedChanged(RadioGroup.java:342)
            E/AndroidRuntime(893):  at 
         android.widget.CompoundButton.setChecked(CompoundButton.java:127)
            E/AndroidRuntime(893):  at 
         android.widget.CompoundButton.toggle(CompoundButton.java:86)
            E/AndroidRuntime(893):  at android.widget.RadioButton.toggle(RadioButton.java:72)
            E/AndroidRuntime(893):  at 
         android.widget.CompoundButton.performClick(CompoundButton.java:98)
            E/AndroidRuntime(893):  at android.view.View$PerformClick.run(View.java:9080)
            E/AndroidRuntime(893):  at android.os.Handler.handleCallback(Handler.java:587)
            E/AndroidRuntime(893):  at android.os.Handler.dispatchMessage(Handler.java:92)
4

5 に答える 5

1

clearRadioButtonsメソッドを作成し、onCreate を呼び出します。

public void clearRadioButtons() {
    radiogroup.clearCheck();
}
于 2016-11-05T05:22:00.793 に答える
0

onCreate() ですべてのラジオ ボタンの ID を検索するようにコードを変更し、それをグローバルにします...

次のボタンの onClickListener に、radioButton.setChecked(false); と記述します。使用したすべてのラジオ ボタンについて...そして btn_practicerg.clearCheck(); の行を削除します。

私はこのようにうまくいきました..

于 2013-02-05T07:07:37.053 に答える
0

使用できるラジオボタンをチェック/チェック解除するにはradioButton.setChecked(true);(またはチェックを外すにはfalse)

于 2013-02-04T11:44:04.123 に答える