在我从内置活动中检索到他们的 ID 号码后,我正在尝试获取联系人的电话号码。但是,每当我在下面的代码中使用光标查询数据库时——即使我选择的联系人有手机号码,我也会返回零行。
谁能给我指出一个更好的方向或展示如何在获取他们的用户 ID 后获取联系人的电话号码的示例?
我的代码:
private Runnable getSMSRunnable() {
return new Runnable() {
public void run() {
Intent i = new Intent(Intent.ACTION_PICK,
ContactsContract.CommonDataKinds.Phone.CONTENT_URI);
startActivityForResult(i, CONTACTS_REQUEST_CODE);
}
};
}
返回日志输出
content://com.android.contacts/data/6802
我从中将 ID (6802) 传递给一个方法,该方法旨在从具有给定类型的 ID 中返回电话号码(在本例中为 ContactsContract.CommonDataKinds.Phone.TYPE_MOBILE)
public static String getContactPhoneNumberByPhoneType(Context context, long contactId, int type) {
String phoneNumber = null;
String[] whereArgs = new String[] { String.valueOf(contactId), String.valueOf(type) };
Log.d(TAG, String.valueOf(contactId));
Cursor cursor = context.getContentResolver().query(
ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
null,
ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = ? and "
+ ContactsContract.CommonDataKinds.Phone.TYPE + " = ?", whereArgs, null);
int phoneNumberIndex = cursor
.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.Phone.NUMBER);
Log.d(TAG, String.valueOf(cursor.getCount()));
if (cursor != null) {
Log.v(TAG, "Cursor Not null");
try {
if (cursor.moveToNext()) {
Log.v(TAG, "Moved to first");
Log.v(TAG, "Cursor Moved to first and checking");
phoneNumber = cursor.getString(phoneNumberIndex);
}
} finally {
Log.v(TAG, "In finally");
cursor.close();
}
}
Log.v(TAG, "Returning phone number");
return phoneNumber;
}
它为电话号码返回 null ——这意味着它找不到我试图访问的行——这意味着我的查询有问题——但是如果我检查一个有手机号码的联系人——如何我可以获得 0 行查询吗?
任何帮助将不胜感激。非常感谢!