Activityのアドレス帳へのアクセスを開始
2089 ワード
Activityのアドレス帳へのアクセスを開始するには、次の文を使用します.
startActivity( new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI));
常にPICK結果を得る必要があり、startActivity ForResult()を使用することができます.
static final int PICK_CONTACT_REQUEST = 0;
startActivityForResult( new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI), PICK_CONTACT_REQUEST);
上記の文はすべて正常に動作します.startActivity ForResult()は、onActivity Result()関数を組み合わせて処理して得られた結果を以下のようにする必要があります.
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=0, result=-1, data=Intent { dat=content://com.android.contacts/contacts/lookup/0n33333333E056FA0580/2 }} to activity {com.androidtest.notepad/com.androidtest.notepad.NotepadActivity}: java.lang.SecurityException: Permission Denial: reading com.android.providers.contacts.ContactsProvider2 uri content://com.android.contacts/contacts/lookup/0n33333333E056FA0580/2 from pid=226, uid=10028 requires android.permission.READ_CONTATSはエラーメッセージに従ってandroidmanifestにいます.xmlにandroidを加える.permission.READ_CONTATS、以下の通りです.
startActivity( new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI));
常にPICK結果を得る必要があり、startActivity ForResult()を使用することができます.
static final int PICK_CONTACT_REQUEST = 0;
startActivityForResult( new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI), PICK_CONTACT_REQUEST);
上記の文はすべて正常に動作します.startActivity ForResult()は、onActivity Result()関数を組み合わせて処理して得られた結果を以下のようにする必要があります.
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK && requestCode == PICK_CONTACT_REQUEST) {
// Perform a query to the contact's content provider for the contact's name
Cursor cursor = getContentResolver().query(data.getData(),
new String[] {Contacts.DISPLAY_NAME}, null, null, null);
if (cursor.moveToFirst()) { // True if the cursor is not empty
int columnIndex = cursor.getColumnIndex(Contacts.DISPLAY_NAME);
// Do something with the selected contact's name...
}
}
}
次のプログラムを実行中に次のような実行時エラーが発生した場合:java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=0, result=-1, data=Intent { dat=content://com.android.contacts/contacts/lookup/0n33333333E056FA0580/2 }} to activity {com.androidtest.notepad/com.androidtest.notepad.NotepadActivity}: java.lang.SecurityException: Permission Denial: reading com.android.providers.contacts.ContactsProvider2 uri content://com.android.contacts/contacts/lookup/0n33333333E056FA0580/2 from pid=226, uid=10028 requires android.permission.READ_CONTATSはエラーメッセージに従ってandroidmanifestにいます.xmlにandroidを加える.permission.READ_CONTATS、以下の通りです.
<?xml version="1.0" encoding="utf-8"?>
<manifest ...... >
<uses-permission android:name="android.permission.READ_CONTACTS" />
.......
</manifest>