程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> contentprovider-從“canonical_addresses”表中獲取地址

contentprovider-從“canonical_addresses”表中獲取地址

編輯:編程綜合問答
從“canonical_addresses”表中獲取地址

在android程序中,我從下面的 uri 中獲取 recipient_id 。

content://mms-sms/conversations?simple=true

現在我想使用 recipient id 從“canonical_addresses”表中獲取地址。但是如何查詢“canonical_addresses”表呢?

最佳回答:


Canonical 表中有兩列,_id 和 number(或者 address)。當你獲取 recipient id 時,要查找那個 id 是否在canonical addresses 表中。對於多個 recipients, ids 被一個 space 分隔開,所以要把結果分隔開:recipient_ids.split(" ")
再查找每個id

getContentResolver().query(Uri.parse("content://mms-sms/canonical-addresses"), null, "_id = " + recipientId, null, null);

或者:

getContentResolver().query(Uri.parse("content://mms-sms/canonical-addresses/" + recipientId), null, null, null, null);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved