This line shows the number of items that the Cursor holds?
userCursor = db.rawQuery("select * from "+ DatabaseHelper.TABLE, null); header.setText("Найдено элементов: " + String.valueOf(userCursor.getCount())); This line shows the number of items that the Cursor holds?
userCursor = db.rawQuery("select * from "+ DatabaseHelper.TABLE, null); header.setText("Найдено элементов: " + String.valueOf(userCursor.getCount())); Source: https://ru.stackoverflow.com/questions/578168/
All Articles