0

我正在制作一个测验应用程序,其中我给出了单选按钮,在最后一页有一个提交按钮,我想在按钮单击时存储选定的单选按钮。

pageData=getResources().getStringArray(R.array.desserts);

    optionData=getResources().getStringArray(R.array.options);

    RadioGroup group = (RadioGroup)mView.findViewById(R.id.group);
    ((TextView)mView.findViewById(R.id.textMessage)).setText(pageData[getArguments().getInt("pos")]);
    if(getArguments().getInt("pos") == 14) {
        ((Button)mView.findViewById(R.id.submitbtn)).setVisibility(View.VISIBLE);
    }


    for(int i = 0; i < group.getChildCount(); i++){
        ((RadioButton) group.getChildAt(i)).setText(optionData[(getArguments().getInt("pos")*4)+i]);
    }
4

0 回答 0