如何处理ava.lang.IndexOutOfBoundsException:索引4无效,大小为4

时间:2017-03-18 13:28:05

标签: android sqlite indexoutofboundsexception

我正在制作一个测验应用程序并且卡在以下错误上 我的logcat是在

之后给出的
E/AndroidRuntime: FATAL EXCEPTION: main
                                                                    Process: com.example.owner.quiz, PID: 25307
                                                                    java.lang.IndexOutOfBoundsException: Invalid index 4, size is 4
                                                                        at java.util.ArrayList.throwIndexOutOfBoundsException(ArrayList.java:255)
                                                                        at java.util.ArrayList.get(ArrayList.java:308)
                                                                        at com.example.owner.quiz.MainActivity$1.onClick(MainActivity.java:50)
                                                                        at android.view.View.performClick(View.java:4791)
                                                                        at android.view.View$PerformClick.run(View.java:19884)
                                                                        at android.os.Handler.handleCallback(Handler.java:739)
                                                                        at android.os.Handler.dispatchMessage(Handler.java:95)
                                                                        at android.os.Looper.loop(Looper.java:135)
                                                                        at android.app.ActivityThread.main(ActivityThread.java:5268)
                                                                        at java.lang.reflect.Method.invoke(Native Method)
                                                                        at java.lang.reflect.Method.invoke(Method.java:372)
                                                                        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:902)
                                                                        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:697)

当我点击(MainActivity.java:50)时,它将转到主要活动 并显示currentQ=quesList.get(qid);这个 以下是我的主要活动代码

public class MainActivity extends Activity {
List<Question> quesList;
int score=0;
int qid=0;
Question currentQ;
TextView txtQuestion;
RadioButton rda, rdb, rdc;
Button butNext;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    DbHelper db=new DbHelper(this);
    quesList=db.getAllQuestions();
    currentQ=quesList.get(qid);
    txtQuestion=(TextView)findViewById(R.id.textView1);
    rda=(RadioButton)findViewById(R.id.radio0);
    rdb=(RadioButton)findViewById(R.id.radio1);
    rdc=(RadioButton)findViewById(R.id.radio2);
    butNext=(Button)findViewById(R.id.button1);



    setQuestionView();


    butNext.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            RadioGroup grp=(RadioGroup)findViewById(R.id.radioGroup1);
            RadioButton answer=(RadioButton)findViewById(grp.getCheckedRadioButtonId());
            if(currentQ.getANSWER().equals(answer.getText()))
            {
                score ++ ;
            }
            currentQ=quesList.get(qid);
            setQuestionView();
        }
    });
}

任何人都可以告诉我如何处理这个

3 个答案:

答案 0 :(得分:1)

您已将qid的值更改为4但不在您所包含的代码中,但您的quesList只有4个项目,因此它的有效索引是0-3

答案 1 :(得分:-1)

您尝试使用if验证,请参阅示例

if (qid < quesList.size()) {
  currentQ=quesList.get(qid);
}

答案 2 :(得分:-1)

这可能是因为sqlite索引从1开始(而不是像List这样的0),你能展示你的DbHelper类代码吗?特别是getAllQuestions()方法。