如何在测验应用程序中创建后退按钮?

时间:2015-10-09 05:53:06

标签: android sqlite

 public class MainActivity extends AppCompatActivity {
             List<Questions> quesList;
             int score=0;
             int qid=0;
            Questions currentQ;
            TextView tv;
            RadioButton rb1,rb2,rb3,rb4;
            ImageButton next,back;
            Questions cur;
            @Override
            protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.activity_main);
                DbHelper db=new DbHelper(this);
                final RadioGroup grp=(RadioGroup) findViewById(R.id.radiogroup1);
                quesList=db.getAllQuestions();
                if(quesList!= null && quesList.size() !=0) {
                    currentQ=quesList.get(qid);
                }
                tv=(TextView) findViewById(R.id.tv1);
                rb1=(RadioButton) findViewById(R.id.radio1);
                rb2=(RadioButton) findViewById(R.id.radio2);
                rb3=(RadioButton) findViewById(R.id.radio3);
                rb4=(RadioButton) findViewById(R.id.radio4);
                next=(ImageButton) findViewById(R.id.forward);
                back=(ImageButton) findViewById(R.id.backward);
                setQuestionView();

      //code for next button..      

    next.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {


                    RadioButton answer=(RadioButton) findViewById(grp.getCheckedRadioButtonId());

                    if(currentQ.getAnswer().equals(answer.getText()))
                    {
                        score++;
                        Log.d("score", "Your score" + score);
                    }
                    if(qid<5){
                        currentQ=quesList.get(qid);
                        setQuestionView();

                        qid++;
                        grp.clearCheck();
                    }else{
                        Intent intent = new Intent(MainActivity.this, ResultActivity.class);
                        Bundle b = new Bundle();
                        b.putInt("score", score); //Your score
                        intent.putExtras(b); //Put your score to your next Intent
                        startActivity(intent);
                        finish();
                    }
                }
            });
            back.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                //Below is the code, i wrote for previous button
                  but it is not working please help me.   
                     if(qid<5)
            {
                currentQ=quesList.get(qid);
                setQuestionView();
                qid--;
            }
                }
            });
        }
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.menu_main, menu);
            return true;
        }
        private void setQuestionView()
        {
            tv.setText(currentQ.getQuestion());
            rb1.setText(currentQ.getOption1());
            rb2.setText(currentQ.getOption2());
            rb3.setText(currentQ.getOption3());
            rb4.setText(currentQ.getOption4());

        }



    }

我想要创建的是我的测验应用程序中的后退按钮,问题来自数据库。我想按钮去上一个问题而不搞砸。我是新来的android可以任何人帮我解决问题..

2 个答案:

答案 0 :(得分:0)

在加载上一个问题之前,您需要减少您的计数器

 back.setOnClickListener(new View.OnClickListener() {
       @Override
       public void onClick(View v) {

           if(qid>0) {
                qid--; // here you decrement
                currentQ=quesList.get(qid);  // here you load
                setQuestionView();
                grp.clearCheck();
           } else {
              // you're at the first question => no previous one
           }
        }
 });

答案 1 :(得分:-1)

这应该有效:

    //if you want to disable the back button on the first question
    if(qid==0)
       back.setEnabled(false);
    else
       back.setEnabled(true);

    back.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if(qid!=0){
                    qid--;
                    currentQ=quesList.get(qid);
                    setQuestionView(); 
                    grp.clearCheck();
                }
            }
        });