2

私はAndroidを初めて使用します。連絡先の詳細を取得する必要がありますが、詳細には3つしか含まれていません。

  1. 連絡先

  2. 連絡先番号と

  3. 電子メールID

ボタンを押すと、すべての連絡先のこれら3つの詳細が表示されます

私はAndroidEclairバージョン2.1を使用しています。解決策はありますか?

4

2 に答える 2

4

以下のコードでそれを行うことができます-

public void doLaunchContactPicker(View view) {
    Intent contactPickerIntent = new Intent(Intent.ACTION_PICK,Contacts.CONTENT_URI);
    startActivityForResult(contactPickerIntent, CONTACT_PICKER_RESULT);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) 
{
    if (resultCode == RESULT_OK) {
        switch (requestCode) 
        {
        case CONTACT_PICKER_RESULT:
            Cursor cursor = null;
            String email = "", name = "";
            try {
                Uri result = data.getData();
                Log.v(DEBUG_TAG, "Got a contact result: " + result.toString());

                // get the contact id from the Uri
                String id = result.getLastPathSegment();

                // query for everything email
                cursor = getContentResolver().query(Email.CONTENT_URI,  null, Email.CONTACT_ID + "=?", new String[] { id }, null);

                int nameId = cursor.getColumnIndex(Contacts.DISPLAY_NAME);

                int emailIdx = cursor.getColumnIndex(Email.DATA);

                // let's just get the first email
                if (cursor.moveToFirst()) {
                    email = cursor.getString(emailIdx);
                    name = cursor.getString(nameId);
                    Log.v(DEBUG_TAG, "Got email: " + email);
                } else {
                    Log.w(DEBUG_TAG, "No results");
                }
            } catch (Exception e) {
                Log.e(DEBUG_TAG, "Failed to get email data", e);
            } finally {
                if (cursor != null) {
                    cursor.close();
                }
                EditText emailEntry = (EditText) findViewById(R.id.editTextv);
                EditText personEntry = (EditText) findViewById(R.id.person);
                emailEntry.setText(email);
                personEntry.setText(name);
                if (email.length() == 0 && name.length() == 0) 
                {
                    Toast.makeText(this, "No Email for Selected Contact",Toast.LENGTH_LONG).show();
                }
            }
            break;
        }

    } else {
        Log.w(DEBUG_TAG, "Warning: activity result not ok");
    }
}

また、これらのリンクも参照してください-

  1. 連絡先の詳細を取得する

  2. 連絡先の読み方

  3. すべての連絡先の詳細を取得

必要な権限を追加することを忘れないでください-

<uses-permission android:name="android.permission.READ_CONTACTS"/>

あなたのAndroidManifest.xmlファイルで。そして、必要に応じてこのコードを変更するだけです。

于 2012-06-11T09:57:59.707 に答える
0

このようにアドレス帳にアクセスできます。

ContentResolver cr = getContentResolver();
Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI, null,null, null,ContactsContract.Contacts.DISPLAY_NAME);
int kisiSayisi =  cur.getCount();

if(kisiSayisi > 0)
{
    int KisiIndex = 0;
    while(cur.moveToNext())
    {
        String id = cur.getString(cur.getColumnIndex(BaseColumns._ID));
        String name = cur.getString(cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
        if (Integer.parseInt(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0)
        {
            Cursor pCur = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,null,ContactsContract.CommonDataKinds.Phone.CONTACT_ID+ " = ?", new String[] { id }, null);
            while (pCur.moveToNext())
            {
                String phone = pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DATA));
                 //String phoneType = pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.TYPE));
                 String dogruGSM = gsmNoKontrol(phone);
                 if(dogruGSM.compareTo("0") != 0){
                        Kisi kisi = new Kisi(KisiIndex, name, dogruGSM, false);
                        MyList.add(kisi);
                        KisiIndex ++;
                 }
             }
             pCur.close();
         }
     }
 }
于 2012-06-11T10:05:12.133 に答える