0
A
回答
0
試試這個您的活動或其他應用程序組件中:
ContentResolver cr = getContentResolver();
Cursor cur = cr.query(People.CONTENT_URI, null, null, null, null);
if (cur.getCount() > 0) {
while (cur.moveToNext()) {
String name = formatName(cur.getString(cur
.getColumnIndex(People.DISPLAY_NAME)));
// Do something with name.
}
}
0
First you have to add `ListView` in your layout file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
現在,在使用這個代碼的Activity
:
Cursor c = getContentResolver().query(People.CONTENT_URI, null, null, null, null);
startManagingCursor(c);
ListAdapter adapter = new SimpleCursorAdapter(this,
android.R.layout.simple_list_item_1,
c,
new String[] {People.NAME} ,
new int[] {android.R.id.text1});
setListAdapter(adapter);
相關問題
- 1. 如何獲取Android列表視圖中的列表名稱?
- 2. 如何在圖的名稱中使用列表名稱?
- 3. 在sharepoint的鏈接數據視圖中獲取列表名稱
- 4. 使用散列表的電話簿
- 5. 如何在列表視圖中獲取列表項的位置?
- 6. 如何在列表視圖中獲取所選用戶名
- 7. 如何在javascript中使用Intl獲取月份名稱列表
- 8. 在iPhone應用程序中獲取電話簿中的聯繫人列表
- 9. 從Facebook獲取名稱並在列表視圖中顯示
- 10. 在列表視圖中使用會話
- 11. 獲取人的列表中使用的名稱列表對象
- 12. 在sharepoint 2010中獲取列表名稱
- 13. 如何獲取在js中的xslt列表視圖webpart中的列表列?
- 14. 從列表中獲取列名稱
- 15. 如何在列表視圖中獲取視圖的ID
- 16. 如何在列表視圖中使用Retrofit獲取數據
- 17. 如何在列中獲取表名
- 18. 如何在Android Studio中從列表視圖撥打電話?
- 19. 如何獲取表格或視圖中的列的列表?
- 20. 在vb.net中,如何從數據表中獲取列名稱
- 21. 如何在列表視圖中獲取行視圖數據
- 22. 如何獲取列表的名稱
- 23. 在Android中向列表視圖列添加列名稱
- 24. 如何使用Sqlite.swift獲取列名稱的列表?
- 25. 如何從列表視圖中獲取列表項的數量?
- 26. 如何獲取行列表中的列表視圖datakeyvalue檢查
- 27. 在Android上使用JSON在列表視圖中獲取圖像
- 28. 如何獲取在VB.NET中運行的進程名稱列表?
- 29. 如何在單行中獲取列名稱的表結構?
- 30. 如何在存儲過程中使用會話列表獲取行的列表