0
A
回答
0
//使用內容提供商你可以做到這一點 還有一些輔助方法,尤其是ContentUris.withAppendedId()和Uri.withAppendedPath(),這可以很容易地追加一個ID到一個URI。兩者都是靜態方法,返回帶有ID添加ID的Uri對象。因此,舉例來說,如果你在人們接觸的數據庫尋找創紀錄的2300,你可以按照以下方式構造查詢:
import android.provider.Contacts.People;
import android.content.ContentUris;
import android.net.Uri;
import android.database.Cursor;
// Use the ContentUris method to produce the base URI for the contact with _ID == 23.
Uri myPerson = ContentUris.withAppendedId(People.CONTENT_URI, 23);
// Alternatively, use the Uri method to produce the base URI.
// It takes a string rather than an integer.
Uri myPerson = Uri.withAppendedPath(People.CONTENT_URI, "23");
// Then query for this specific record:
Cursor cur = managedQuery(myPerson, null, null, null, null);
相關問題
- 1. android編輯聯繫人
- 2. 在android中獲取當前聯繫人
- 3. android編程式編輯聯繫人
- 4. 當ID已知時獲取聯繫人
- 5. 當按下按鈕時點擊聯繫人onClick Android
- 6. Xamarin Android編輯聯繫人意圖
- 7. 編輯股票android的聯繫人apk
- 8. 當我點擊聯繫人時,如何檢索聯繫人的詳細信息?
- 9. Android獲取聯繫人列表,但沒有SIM卡聯繫人
- 10. 如何獲取Android聯繫人列表上聯繫人的ID?
- 11. 從Android聯繫人獲取聯繫人姓名和姓氏
- 12. 如何從android中的聯繫人獲取聯繫人號碼?
- 13. 獲取聯繫人
- 14. Android:編輯類似於編輯聯繫人視圖的視圖
- 15. 當點擊可編輯網格時獲取列索引
- 16. Bootstrap JQuery/Ajax內聯編輯當點擊編輯按鈕
- 17. 出現在聯繫人中的聯繫人編輯視圖UI
- 18. android獲取聯繫人的暱稱
- 19. Android聯繫人列表獲取地址
- 20. Android獲取聯繫人手機圖像
- 21. 獲取Android聯繫人排序偏好
- 22. Xamarin android獲取地址聯繫人
- 23. 在Xamarin中獲取Android聯繫人
- 24. Android - 無法獲取聯繫人照片?
- 25. 獲取聯繫人在Android的
- 26. 如何在Android中獲取聯繫人
- 27. Android聯繫人 - 獲取電話號碼
- 28. 如何從Android獲取whatsapp聯繫人?
- 29. android獲取所有聯繫人
- 30. 在android中獲取聯繫人