쉽다.
아래와같이 쿼리를 날린 후에,
Cursor c = db.query(
Auth.FeedEntry.TABLE_NAME, // The table to query
projection, // The columns to return
selection, // The columns for the WHERE clause
selectionArgs, // The values for the WHERE clause
null, // don't group the rows
null, // don't filter by row groups
null // The sort order
);
cursor.moveToNext();
int count = c.getCount();
위와같이 인덱스가 -1로 되어있을테니 한칸 옮겨주고 숫자를 세면 된다.
'모바일 > Android' 카테고리의 다른 글
opera 개발자 / microsoft code 정렬 단축키 (0) | 2016.04.30 |
---|---|
NVD3, 버그(?) 피해가기 (Uncaught TypeError) (2) | 2016.04.30 |
android adb 이용해서 device의 sqlite db확인하기 (0) | 2016.04.17 |
sqlite 에러 (0) | 2016.04.17 |
안드로이드 색깔 바꾸기 getColor() 및 DP로 stroke치기 (0) | 2016.04.13 |