2011-11-28 63 views

回答

4

您需要使用'ORDER BY'子句查詢數據庫。這將是這個樣子

Cursor cursor = database.query(TABLE_NAME, new String[] {"_id", "quote", "click"}, null, null, null, null, "click DESC"); 

cursor.moveToFirst(); // this will get the cursor ready to be used in an adapter 

setListAdapter(new SimpleCursorAdapter(this, android.R.layout.simple_list_item_1, cursor, new String[] {"quote"}, new String[] {android.R.id.text1}); 

假設該名單是對報價和您在ListActivity

0

使用SimpleCursorAdapter,並且當您創建查詢時,指定「單擊DESC」作爲排序順序(managedQuery()的最後一個參數))。

+0

工作是否有可能拋出sqlite的qurey – Krishna

+0

是的,它是。 SQLite支持排序。 – zmbq

+0

可以請你給我查詢 – Krishna

相關問題