次のような選択変数のように、データベース内の最初の 20 項目を取得し、次に次の 20 項目を取得したいと考えています。
String selection = SQLite.firstTableColumns[8]+">="+0+" and "+SQLite.firstTableColumns[8]+"<"+20;
Log.d("search from db","selection "+selection+" !!!!!!!!!!!");
Cursor cursor = SQLiteDataBase.query("feedFirstTable",SQLite.firstTableColumns,selection, null, null, null, null);
しかし、それは空の を返しますArrayList
。