应用程序在 onPause 和 onResume Listview 问题之间崩溃

App crashes between onPause and onResume Listview issue

我有一个列表视图 activity,它通过 sqlite 数据库填充数据;但是,每当我输入 onPause 然后进入 onResume 时,我的应用程序崩溃并收到此错误:"java.lang.IllegalStateException: trying to requery an already closed cursor android.database.sqlite.SQLiteCursor@418106a8"。有谁知道如何阻止这个?有没有我必须在 onPause 中调用的方法?

        @Override
protected void onResume() {
    super.onResume();
    uGraduateListAdapter = new ArrayAdapter<String>(ListOfAlarms.this, android.R.layout.simple_list_item_1, populateList());
    listOfAlarms.setAdapter(uGraduateListAdapter);
    Log.i(TAG, "Resume was called");
}

@Override
protected void onPause() {
    super.onPause();

    Log.i(TAG, "Pause was called");
    sqliteDatabase.close();
}



public List<String> populateList(){

        // We have to return a List which contains only String values. Lets create a List first
        List<String> uGraduateNamesList = new ArrayList<String>();

        // First we need to make contact with the database we have created using the DbHelper class
        AndroidOpenDbHelper openHelperClass = new AndroidOpenDbHelper(this);

        // Then we need to get a readable database
         sqliteDatabase = openHelperClass.getReadableDatabase();

        // We need a a guy to read the database query. Cursor interface will do it for us
        //(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy)
         cursor = sqliteDatabase.query(AndroidOpenDbHelper.TABLE_NAME_ALARM, null, null, null, null, null, null);
        // Above given query, read all the columns and fields of the table

        startManagingCursor(cursor);

        // Cursor object read all the fields. So we make sure to check it will not miss any by looping through a while loop
        while (cursor.moveToNext()) {
            // In one loop, cursor read one undergraduate all details
            // Assume, we also need to see all the details of each and every undergraduate
            // What we have to do is in each loop, read all the values, pass them to the POJO class
            //and create a ArrayList of undergraduates

            String alarmName = cursor.getString(cursor.getColumnIndex(AndroidOpenDbHelper.COLUMN_NAME_ALARM_NAME));
//            String ugUniId = cursor.getString(cursor.getColumnIndex(AndroidOpenDbHelper.COLUMN_NAME_UNDERGRADUATE_UNI_ID));
            String alarmTotalTime = cursor.getString(cursor.getColumnIndex(AndroidOpenDbHelper.COLLUMN_ALARM_TOTALTIME));

            // Finish reading one raw, now we have to pass them to the POJO
            TestAlarm ugPojoClass = new TestAlarm();
            ugPojoClass.setTitle(alarmName);

            ugPojoClass.setTotalTime(alarmTotalTime);

            // Lets pass that POJO to our ArrayList which contains undergraduates as type
            pojoArrayList.add(ugPojoClass);

            // But we need a List of String to display in the ListView also.
            //That is why we create "uGraduateNamesList"
            uGraduateNamesList.add(alarmName);
        }

        // If you don't close the database, you will get an error
        sqliteDatabase.close();

        return uGraduateNamesList;
    }

您正在使用已弃用的方法 (startManagingCursor()),这很危险。

我怎么看会发生什么:当您关闭数据库时(实际上两次:在 populateList()onPause() 中),您对该数据库的游标变得无效。但是由于您调用了 startManagingCursor(),您的 Activity 保留了您的光标并在重新启动时尝试对其调用 requery(),这会引发错误。

尝试完全不调用 startManagingCursor(),完成后才调用 cursor.close()。或者您可以完全迁移到较新的 LoaderManager