Android的 - 不能让某些联系人的电话号码能让、电话号码、联系人、Android

由网友(安于命°)分享简介:我在使用中提取一些人的电话号码在我的联系人列表中的问题。I'm having a problem with extracting phone numbers of some people in my contact list.首先,我显示一个列表视图中的所有联系人:First I show all the con...

我在使用中提取一些人的电话号码在我的联系人列表中的问题。

I'm having a problem with extracting phone numbers of some people in my contact list.

首先,我显示一个列表视图中的所有联系人:

First I show all the contacts in a listview:

String[] projection = new String[] {
            ContactsContract.Contacts._ID,
            ContactsContract.CommonDataKinds.Phone.CONTACT_ID,
            ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME,
            ContactsContract.CommonDataKinds.Phone.NUMBER
    };

mCursor = mContext.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
            projection, ContactsContract.CommonDataKinds.Phone.CONTACT_ID + "=?", new String[] {mContactId}, null);

当一个项目点击,这是我取CONTACT_ID:

When clicking on an item, this is how I fetch the contact_id:

@Override
public void onListItemClick(ListView l, View v, int position, long id) {
        Cursor currentCursor = mContactsAdapter.getCursor();

    if (currentCursor != null) {
        notifyOnContactSelectedListeners(String.valueOf(id));
    }
}

然后,我创建一个新的片段,并在加载它,我查询了联系人的电话和放大器;显示名称:

Then I create a new fragment, and while loading it I query for the contact's phone & display name:

if (cursor != null && cursor.getCount() > 0) {

        cursor.moveToFirst();

        String firstName = cursor.getString(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
        String number = cursor.getString(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
    }

所以,对某些人来说,有一个电话,我得到的电话号码,这样一来,不过没关系。 但对某些人,我不能得到的电话号码这样 - 但他们确实有默认的手机电话本的电话号码

So for some people that has a phone, I get the phone number this way and that's ok. But for some people I can't get the phone number this way - but they do have phone number in the default's phone contacts book.

出了什么问题?

推荐答案

试试这可能是对您有用。

try this may it useful for you

公共类联系扩展活动实现OnItemClickListener {

public class Contact extends Activity implements OnItemClickListener{

private static final int PICK_CONTACT = 0;
Cursor c;
Cursor cursor,phones,emails,address;
String id,phoneNo,name;
String[] from;
int[] to;
ListView lv;
Cursor cur,pCur;
List<String> list1 = new ArrayList<String>();

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.contact);
  lv = (ListView)findViewById(R.id.contactlist);
  displayContacts();
  lv.setAdapter(new ArrayAdapter<String>(this,
          android.R.layout.simple_list_item_1, list1)); 
  lv.setOnItemClickListener(this);
}

private void displayContacts() {

    ContentResolver cr = getContentResolver();
   cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
            null, null, null, null);
    if (cur.getCount() > 0) {
        while (cur.moveToNext()) {
            id = cur.getString(cur.getColumnIndex(ContactsContract.Contacts._ID));
             name = cur.getString(cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
            if (Integer.parseInt(cur.getString(
                    cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
                  pCur = cr.query(
                         ContactsContract.CommonDataKinds.Phone.CONTENT_URI, 
                         null, 
                         ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = ?", 
                         new String[]{id}, null);
                 while (pCur.moveToNext()) {
                     phoneNo = pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
                 // setContact(name,phoneNo);
                     System.out.println("name"+name+"ph no"+phoneNo);
                     list1.add(name+"n"+phoneNo);
            //       Toast.makeText(this, "Name: " + name + ", Phone No: " + phoneNo, Toast.LENGTH_SHORT).show();


                 } 

            pCur.close();
          }
        }
    }




}

@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
    // TODO Auto-generated method stub
    String s = lv.getItemAtPosition(arg2).toString();

    Log.i("my msg", s.substring(0, s.indexOf("n")));

    Toast.makeText(this, s.substring(s.indexOf("n")+1,s.length() ),1 ).show();
}  

}

阅读全文

相关推荐

最新文章