从SimpleCursorAdapter

时间:2016-06-10 05:10:23

标签: android sqlite android-recyclerview simplecursoradapter clover

我有一个实现LoaderManager.LoaderCallbacks Cursor类的活动。 我有这个函数从SQlite获取数据。

@Override
public Loader<Cursor> onCreateLoader(int id, Bundle args) {
    switch (id) {
        case ITEM_LOADER_ID:
            // The uri points to Item, which is the items in the inventory
            Uri uri = InventoryContract.Item.contentUriWithAccount(mCloverAccount);
            String sortOrder = InventoryContract.Item.NAME;

            String selection = "";

            try {

                selection = InventoryContract.ItemColumns.CODE;

            catch (Exception e){
                Log.e("Error",e.toString());
            }
            return new CursorLoader(HomeActivity.this, uri, null, selection, null, sortOrder);
        default:
            // An invalid id was passed in
    }
    throw new IllegalArgumentException("Unknown Loader ID");
}

我有一个SimpleCursorAdapter

SimpleCursorAdapter adapter = new SimpleCursorAdapter(
            this,
            android.R.layout.simple_list_item_2,
            null,
            new String[]{InventoryContract.Item.NAME, InventoryContract.Item.PRICE_TYPE},
            new int[]{android.R.id.text1, android.R.id.text2},
            0
    );

这是功能和获取数据,但我想获取光标,以便我可以检索所有信息并存储到List中以便执行。我搜索所有相关链接以获取光标,并找到一个代码:

    Cursor c = adapter.getCursor();
    try {

        int i = 0;
        while (c.moveToNext()){
            Log.e("In Log Cursor",c.getString(i));
            i++;
        }
        c.close();
    }
    catch (Exception e){
        Log.e("Error",e.toString());
    }            

但它正在获得null游标。我想获取该数据并制作自定义适配器以进行进一步操作。请帮助我找到解决方案或任何其他方式从SQlite获取数据并存储为List,我可以在获取后使用它,并可以在RecyclerView中设置它。提前致谢。

1 个答案:

答案 0 :(得分:0)

我认为这是一个老帖子,但我认为它可以帮助别人。你可以在onloadFinshed方法中实现他的步骤

public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
    adapter.swapCursor(data);
        /*
        data.moveToFirst();

    if (data.getCount() != 0) {
        for (int i = 0; i < data.getCount(); i++) {
            String s = data.getString(data.getColumnIndex(column no));
            data.moveToNext();
        }
    }


}