2

我已经阅读了几篇相关的帖子,甚至在这里发布和回答,但似乎我无法解决问题。

我有 3 个活动:Act1(主要)Act2 Act3

当来回 Act1->Act2 和 Act2->Act1 时我没有问题 当去 Act2->Act3 我没有问题 当去 Act3->Act2 时我偶尔会遇到以下错误:java.lang.IllegalStateException: trying to requery an already closed cursor android.database.sqlite.SQLiteCursor@.... 这是一个 ListView 游标。

我尝试了什么: 1. 添加stopManagingCursor(currentCursor);到 Act2 的 onPause() 以便在离开 Act2 到 Act3 时停止管理光标

protected void onPause() 
{
    Log.i(getClass().getName() + ".onPause", "Hi!");

    super.onPause();
    saveState();

    //Make sure you get rid of the cursor when leaving to another Activity
    //Prevents: ...Unable to resume activity... trying to requery an already closed cursor
    Cursor currentCursor = ((SimpleCursorAdapter)getListAdapter()).getCursor();
    stopManagingCursor(currentCursor);
}
  1. 从 Act3 返回 Act2 时,我执行以下操作:

    私人无效populateCompetitorsListView() { ListAdapter currentListAdapter = getListAdapter(); 光标 currentCursor = null; 光标锦标赛StocksCursor = null;

    if(currentListAdapter != null)
    {
    currentCursor = ((SimpleCursorAdapter)currentListAdapter).getCursor();
    
    if(currentCursor != null)
    {
        //might be redundant, not sure
                    stopManagingCursor(currentCursor);
    
        // Get all of the stocks from the database and create the item list
        tournamentStocksCursor = mDbHelper.retrieveTrounamentStocks(mTournamentRowId);
                ((SimpleCursorAdapter)currentListAdapter).changeCursor(tournamentStocksCursor);
        }   
        else
        {
            tournamentStocksCursor = mDbHelper.retrieveTrounamentStocks(mTournamentRowId);
        }
    }
    else
    {
        tournamentStocksCursor = mDbHelper.retrieveTrounamentStocks(mTournamentRowId);
    }
    
        startManagingCursor(tournamentStocksCursor);        
    
        //Create an array to specify the fields we want to display in the list (only name)
        String[] from = new String[] {StournamentConstants.TblStocks.COLUMN_NAME, StournamentConstants.TblTournamentsStocks.COLUMN_SCORE};
    
        // and an array of the fields we want to bind those fields to (in this case just name)
        int[] to = new int[]{R.id.competitor_name, R.id.competitor_score};
    
        // Now create an array adapter and set it to display using our row
        SimpleCursorAdapter tournamentStocks = new SimpleCursorAdapter(this, R.layout.competitor_row, tournamentStocksCursor, from, to);
    
        //tournamentStocks.convertToString(tournamentStocksCursor);
        setListAdapter(tournamentStocks);       
    }
    

所以我确保我使光标无效并使用不同的光标。我发现当我进入 Act3->Act2 时,系统有时会为列表视图使用相同的光标,有时它会有不同的光标。

这很难调试,我在调试时永远无法捕捉到崩溃的系统。我怀疑这与调试所需的时间(长)和运行应用程序所需的时间有关(短得多,不会因断点而暂停)。

在 Act2 中,我使用以下 Intent 并期望没有结果:

protected void onListItemClick(ListView l, View v, int position, long id) 
{       
    super.onListItemClick(l, v, position, id);

    Intent intent = new Intent(this, ActivityCompetitorDetails.class);

    intent.putExtra(StournamentConstants.App.competitorId, id);
    intent.putExtra(StournamentConstants.App.tournamentId, mTournamentRowId);   

    startActivity(intent);
}

移动 Act1->Act2 Act2->Act1 从来没有给我带来麻烦。我在那里使用startActivityForResult(intent, ACTIVITY_EDIT);但我不确定 - 这可能是我麻烦的根源吗?

如果有人能对这个主题有所了解,我将不胜感激。我有兴趣了解更多关于这个主题的信息。

感谢:D。

4

3 回答 3

1

放这个它可能对你有用:

    @Override
    protected void onRestart() {
        // TODO Auto-generated method stub
        super.onRestart();

            orderCursor.requery();
    }
于 2013-06-24T05:52:15.853 回答
1

我称之为二维问题:造成这次崩溃的原因有两个: 1. 我使用startManagingCursor(mItemCursor);了我不应该使用的地方。2. 我忘了 initCursorAdapter() (用于自动完成)onResume()

//@SuppressWarnings("deprecation")
private void initCursorAdapter()
{
    mItemCursor = mDbHelper.getCompetitorsCursor("");      
    startManagingCursor(mItemCursor); //<= this is bad!

    mCursorAdapter = new CompetitorAdapter(getApplicationContext(), mItemCursor);       

    initItemFilter();
}

现在它似乎工作正常。但愿如此...

于 2012-06-07T15:45:14.767 回答
0

这也有效

       if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) {
            startManagingCursor(Cursor);
        }
于 2013-09-09T14:30:16.910 回答