i am trying to get the answers from a form in an application with android. here is the code i used :
package com.stage.sondage;
import android.ap
The error is in (com.stage.sondage.Questionnaire.onCreate(Questionnaire.java:54))
, can you indicate which line is this?
another thing, in the following part mRadioGroup should vary right? mRadioGroup1, mRadioGroup2,..etc:
RadioButton b1 = (RadioButton)findViewById(mRadioGroup1.getCheckedRadioButtonId());
appreciation.setRep1((String) b1.getText());
RadioButton b2 = (RadioButton)findViewById(mRadioGroup1.getCheckedRadioButtonId());
appreciation.setRep1((String) b2.getText());
RadioButton b3 = (RadioButton)findViewById(mRadioGroup1.getCheckedRadioButtonId());
appreciation.setRep1((String) b3.getText());
RadioButton b4 = (RadioButton)findViewById(mRadioGroup1.getCheckedRadioButtonId());
appreciation.setRep1((String) b4.getText());
RadioButton b5 = (RadioButton)findViewById(mRadioGroup1.getCheckedRadioButtonId());
appreciation.setRep1((String) b5.getText());