行数を取得するためにこれを試しました。しかし、プログラムはハングしています。
private int countbaglist()
{
int count = 0;
SQLiteDatabase db = datasource.getWritableDatabase();
Cursor cursor = db.rawQuery(
"select count(*) from shoplist where itemname=?",
new String[] { String.valueOf("itemname") });
while(cursor.moveToFirst())
{
count = cursor.getCount();
}
return count;
}