ボタンが1つあるAndroidテストアプリケーションを1つ作成しています。ボタンをクリックすると、電話帳のレコードをローカルデータベースと同期したい.電話帳のレコードがデータベーステーブルにない場合は挿入し、そうでない場合はそのままにしておきます。どうすればこれを行うことができますか?
質問する
2483 次
2 に答える
1
電話帳から連絡先リストを取得するには、AndroidManifest.XML
(つまりandroid.permission.READ_CONTACTS
) への書き込み権限が必要です。また、次の方法で連絡先リストを収集できます。
ShowContact()
{
ArrayList<String> nameList;
ArrayList<String> phoneNoList;
ContentResolver cr = getContentResolver();
Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
null, null, null, null);
if (cur.getCount() > 0) {
while (cur.moveToNext()) {
String id = cur.getString(
cur.getColumnIndex(ContactsContract.Contacts._ID));
String name = cur.getString(
cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
if(Integer.parseInt(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
//Query phone here. Covered next
Cursor pCur = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,null,ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = ?",
new String[]{id}, null);
while (pCur.moveToNext()) {
// Do something with phones
String phoneNo = pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
nameList.add(name); // Here you can list of contact.
phoneNoList.add(phoneNo); // And here you can get list of phone number.You have to query separately for getting phone_no,email,name etc
// Here you have to iterate this(i.e. nameList) with your list in the database.And your rest of logic.
}
pCur.close();
}
}
}
}
また、連絡先リストの取得に問題がある場合はお知らせください。
于 2012-07-25T06:10:04.340 に答える