cursor = getContentResolver().query(GroceryItemProvider.ITEM_URI, projection, id+"="+GroceryItemTable.LIST_ID, null, null);
adapter= new SimpleCursorAdapter(this, R.layout.list_row, cursor, from, to , 0);
adapter.swapCursor(cursor);
これにより、カスタム値で渡すカーソルではなく、テーブル全体を含むリストが作成されます。これはデフォルトの動作ですか??