Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作ってみた、webviewの履歴。でデータベースをオンに設定するlistViewとsimpleCursorAdapter、リストの最後に最後に追加されたアイテムが次のように表示されます。
listView
simpleCursorAdapter
これは KEY_ID リストです:
1 2 3 4 5
しかし、最後に追加されたアイテムがリストの最初に表示されるようにしたい:
5 4 3 2 1
どうやってするの?
DESCフェッチ結果を降順でASC、昇順で使用する必要があります。
DESC
ASC
Cursor c = db.query(DATABASE_TABLE, projection_column, null, null, null, null, KEY_ID + "DESC");