繁体   English   中英

我创建了一个测验,但是我不确定如何使用Parse捕获捕获的按钮以检查答案

[英]I've created a quiz however I'm not sure how to implement the capturing of the buttons pressed to check against the answer using Parse

我有四个按钮和一个textView。 使用以下代码从Parse.com中检索textView中的文本:

final ParseQuery<ParseObject> quizOne = ParseQuery.getQuery("Quiz");
    quizOne.getFirstInBackground(new GetCallback<ParseObject>() {

        public void done(ParseObject reqDetails, ParseException e) {

            if (quizOne != null) {
                Log.d("quizOne", "Got it");
                //Retrieve Age
                String gettheQuestion = reqDetails.getString("questionOne");
                TextView getQone = (TextView) findViewById(R.id.quesOne);
                getQone.setText(gettheQuestion);
                Toast.makeText(getApplicationContext(),
                        "Successfully Recieved Question",
                        Toast.LENGTH_LONG).show();


            } else {
                Log.d("quizOne", "Question not retreived.");
                Toast.makeText(getApplicationContext(),
                        "Can't Get Details, Check Connection", Toast.LENGTH_LONG)
                        .show();
            }
        }
    });

这是按钮的代码:

 optionAq.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            if (optionAq.equals(optionAq)) {
                Intent intent = new Intent(Quiz.this, Question2.class);
                startActivity(intent);
            }
        }
    });

    optionBq.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(Quiz.this, Question2.class);
            startActivity(intent);
        }


    });

    optionCq.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(Quiz.this, Question2.class);
            startActivity(intent);
        }


    });

    optionDq.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(Quiz.this, Question2.class);
            startActivity(intent);
        }


    });

我希望能够捕获所按下的按钮,并在之后像结果屏幕一样显示。 任何指针,我将如何做到这一点?

谢谢。

您不需要所有这些onClickListeners 您只需要一个带有多个RadioButtonsRadioGroup 您必须将其包含在XML布局中,如下所示:

 <RadioGroup
        android:id="@+id/radioGroup1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/textView1"
        android:orientation="vertical" >

        <RadioButton
            android:id="@+id/optionAq"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:onClick="onRadioButtonClicked"
            android:text="A" />

        <RadioButton
            android:id="@+id/optionAb"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:onClick="onRadioButtonClicked"
            android:text="B" />

        <RadioButton
            android:id="@+id/optionCb"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:onClick="onRadioButtonClicked"
            android:text="C" />

        <RadioButton
            android:id="@+id/optionDb"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:onClick="onRadioButtonClicked"
            android:text="D" />
    </RadioGroup>

然后,在“ Activity ,必须将“ Buttons更改为“ RadioButtons Buttons

然后添加方法onRadioButtonClicked() ,如果选择了任何RadioButtons ,则将调用该方法。

public void onRadioButtonClicked(View v){
        Log.i("Answer", "Answer is "+ ((RadioButton)v).getText());
        Intent intent = new Intent(Quiz.this, Question2.class);
        //send the answer to the next Activity if yo need
        intent.putExtra("answer", ((RadioButton)v).getText());
        //start next Activity
        startActivity(intent);
    }

根据您的实现,即在单击RadioButton启动一个新的Activity ,这是一个很好的方法。

还有许多其他方法,例如使用radioGroup1.getCheckedRadioButtonId()获取选定的RadioButton ID。

无论如何,您可以在我之前的评论中提供的URL中了解到更多信息。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM