すべての連絡先の名前と番号を取得しようとしていますgetContentResolver
が、使用しようとしていますが、取得しています
get content resolver () メソッドは、型に対して定義されていません
このエラー。
どうすれば修正できますか?
以下のコードは次のとおりです。
public class ContactManager {
public ArrayList<Product> getContactNumber() {
Cursor phones = getContentResolver().query(
ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null,
null, null);
while (phones.moveToNext()) {
String name = phones
.getString(phones
.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
String phoneNumber = phones
.getString(phones
.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
}
phones.close();
}
}