我正在尝试阅读我使用谷歌联系人添加到我的联系人的字段。
我知道这些字段会同步,因为我可以使用替代的联系人查看器应用程序查看它。-> SoftWyer 的联系人视图
我如何查询这些数据?
提前致谢!
我正在尝试阅读我使用谷歌联系人添加到我的联系人的字段。
我知道这些字段会同步,因为我可以使用替代的联系人查看器应用程序查看它。-> SoftWyer 的联系人视图
我如何查询这些数据?
提前致谢!
ContentResolver cr = getContentResolver();
String selection = ContactsContract.Data.MIMETYPE + " = ?" ;
String[] selectionParams = new String[]
{"vnd.com.google.cursor.item/contact_user_defined_field"};
Cursor tokenCur = cr.query(
ContactsContract.Data.CONTENT_URI,
null,
selection ,
selectionParams ,
null);