1

我是游标加载器的新手。我想在特定时间刷新游标加载器以刷新我的列表视图,即,我正在从数据库执行不同的查询以刷新列表中的数据。

    @Override
    public Loader<Cursor> onCreateLoader(int id, Bundle arg1) {

    switch (id) {
    case 0:
    Log.i("IN LIST AGAIN: SORT BY DISTANCE","DEalFragment/fillListAgain():"+id);
    return new CursorLoader(getActivity(), // Parent activity context
    DataBaseConstants.TableURi, null, // Projection

        "" + DataBaseConstants.ColumName_1 + " = 'L'" /*+ " AND "
    + DataBaseConstants.ColumName_2 + " != 0"*/, // selection
            null,// No selection arguments
    DataBaseConstants.C_DIST + " ASC LIMIT 6"// Default sort order
        );

    case 1:
            return new CursorLoader(getActivity(), // Parent activity context
        DataBaseConstants.TabelURi, null, // Projection

            "" + DataBaseConstants.C_LTY_PROMO_TYPE + " = 'L'" + " AND "
            + DataBaseConstants.C_LTY_PROMO_ID_PARENT + " != 0", // selection

            null,// No selection arguments
                DataBaseConstants.C_DIST + " ASC  LIMIT 25"// Default sort order
                );
            default:


                return null;
        }
            }

在第一种情况下,我需要来自 db 的 6 个数据,在第二种情况下,我需要 25 个数据。我打电话

getLoaderManager().initLoader(0, null, this);   

对于第二个案例的第一个案例,我打电话给

    getLoaderManager().initLoader(1, null, this);   

我没有得到正确的结果。你能帮忙找出错误是什么吗

4

0 回答 0