2016-11-02 7 views
0
@Override 
     protected void onCreate(Bundle savedInstanceState) { 
      super.onCreate(savedInstanceState); 
      setContentView(R.layout.activity_quiz); 
      Dbb db=new Dbb(this); 
      quesll=db.getAllQuestions(); 
      currentQ=quesList.get(qid); 
      txtresult=(TextView)findViewById(R.id.textView2); 
      txtQuestion=(TextView)findViewById(R.id.textView1); 
      radiobuttona=(RadioButton)findViewById(R.id.radio0); 
      radiobuttonb=(RadioButton)findViewById(R.id.radio1); 
      buttonnext=(Button)findViewById(R.id.button1); 
      buttonnext.setEnabled(false); 
      setQuestionView(); 
      buttonnext.setOnClickListener(new View.OnClickListener() { 
       @Override 
       public void onClick(View v) { 
        RadioGroup group = (RadioGroup) findViewById(radioGroup); 
        RadioButton answer = (RadioButton) findViewById(grp.getCheckedRadioButtonId()); 
        if (group .isSelected()){ 
         butNext.setEnabled(true); 
        } 

ラジオグループが選択されている場合、ボタンが有効になっていない理由を教えてください。ラジオグループが選択されているときにボタンが有効にならない

あなたの投稿は主にコードであるようです。詳細を追加してください。 あなたの投稿は主にコードであるようです。詳細を追加してください。 あなたの投稿は主にコードであるようです。詳細をいくつか追加してください。あなたの投稿は主にコードです。詳細を追加してください。

答えて

2

このコードは機能します。

public class Sample extends Activity { 

    private RadioGroup radioGroup; 
    private RadioButton radioButtonmale, radioButtonfemale; 
    private Button btnDisplay; 

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_stackover); 

     addListenerOnButton(); 

    } 

    public void addListenerOnButton() { 

     radioGroup = (RadioGroup) findViewById(R.id.radioSex); 
     btnDisplay = (Button) findViewById(R.id.btnDisplay); 
     btnDisplay.setEnabled(false); 
     radioButtonmale = (RadioButton) findViewById(R.id.radioMale); 
     radioButtonfemale = (RadioButton) findViewById(R.id.radioFemale); 
     radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() { 

      @Override 
      public void onCheckedChanged(RadioGroup group, int checkedId) { 
       int id = radioGroup.getCheckedRadioButtonId(); 
       View radioButton = radioGroup.findViewById(id); 
       if (radioButton.getId() == R.id.radioMale) { 
        btnDisplay.setEnabled(true); 
       } else { 
        btnDisplay.setEnabled(true); 
       } 
      } 
     }); 

    } 
} 
+0

ありがとう、その本当の仕事^^ – Peter

+0

**ウェルカムピーター!** – HsRaja

0

私はこの問題はここにあると思う:

butNext.setEnabled(true); 

あなたが "butNext" というボタンがありません。

+0

はい、それがありますか? – Peter

関連する問題