在我的项目中,我为用户创建了3个“单选按钮”单选按钮。我在Activity
中检索的SQLite数据库中有一些问题和答案,然后在RadioGroup
中进行设置。到目前为止,它工作正常,但是现在我想获取所选单选按钮的所有ID,然后对其进行计数。我正在使用'com.stepstone.stepper:material-stepper:4.3.1'
库(Reference Link)。
我的活动
public class KlasifikasiActivity extends AppCompatActivity implements StepperLayout.StepperListener {
@Override
public void onCompleted(View completeButton) {
Toast.makeText(this, "onCompleted!", Toast.LENGTH_SHORT).show();
}
@Override
public void onError(VerificationError verificationError) {
Toast.makeText(this, "onError! -> " + verificationError.getErrorMessage(), Toast.LENGTH_SHORT).show();
}
@Override
public void onStepSelected(int newStepPosition) {
Toast.makeText(this, "onStepSelected! -> " + newStepPosition, Toast.LENGTH_SHORT).show();
}
@Override
public void onReturn() {
finish();
}
}
我的StepFragment
public class StepFragmentExample extends Fragment implements Step {
public StepFragmentExample() {
// Required empty public constructor
}
RadioGroup mRadioGroup;
RadioButton mRadioButton1;
RadioButton mRadioButton2;
RadioButton mRadioButton3;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
Bundle bundle = this.getArguments();
Log.d("##", "onCreateView: " + bundle.getInt(MyStepperAdapter.CURRENT_STEP_POSITION_KEY)) ;
View view = inflater.inflate(R.layout.fragment_step_fragment_example, container, false);
mRadioGroup = view.findViewById(R.id.radioGroupWrapper);
DatabaseHelper mDBHelper = new DatabaseHelper(getContext());
Log.d("#######", String.valueOf(bundle.getInt(MyStepperAdapter.CURRENT_STEP_POSITION_KEY)));
final List<Klasifikasi> lk = mDBHelper.getListKlasifikasiByGroup(String.valueOf(Integer.valueOf(bundle.getInt(MyStepperAdapter.CURRENT_STEP_POSITION_KEY)) + 1));
final RadioButton[] rb = new RadioButton[lk.size()];
Log.d("##sz", "onCreateView: " + lk.size()) ;
int[][] states = new int[][] {
new int[] { android.R.attr.state_enabled}, // enabled
new int[] {-android.R.attr.state_enabled}, // disabled
new int[] {-android.R.attr.state_checked}, // unchecked
new int[] { android.R.attr.state_pressed} // pressed
};
int[] colors = new int[] {
Color.BLACK,
Color.BLACK,
Color.BLACK,
Color.BLACK
};
mRadioButton1 = view.findViewById(R.id.checkbox1);
mRadioButton2 = view.findViewById(R.id.checkbox2);
mRadioButton3 = view.findViewById(R.id.checkbox3);
if(lk.size() > 0) {
Klasifikasi kl0 = lk.get(0);
Klasifikasi kl1 = lk.get(1);
Klasifikasi kl2 = lk.get(2);
mRadioButton1.setText(kl0.getKlasifikasi());
mRadioButton2.setText(kl1.getKlasifikasi());
mRadioButton3.setText(kl2.getKlasifikasi());
}
return view;
}
@Nullable
@Override
public VerificationError verifyStep() {
return null;
}
@Override
public void onSelected() {
}
@Override
public void onError(@NonNull VerificationError error) {
}
}
如何获取所选单选按钮的ID?我的完整代码在this链接中。
答案 0 :(得分:0)
使用mRadioGroup.getCheckedRadioButtonId()
获取RadioButton
内所选RadioGroup
的ID
答案 1 :(得分:0)
您可以使用问题ID和答案ID将这些值保存到新表中的SQLite数据库中,并在最终页面中计算这些值!!!或者,您可以管理静态Arraylist来存储用户的Answer。我更喜欢使用SQLite来存储值。