文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

android利用ContentResolver访问者获取手机联系人信息

2022-06-06 04:18

关注

利用ContentResolver内容访问者,获取手机联系人信息我做了两种不同的做法。第一种,直接获取所有手机联系人信息,展示在ListView中。第二种,通过Butten按钮跳转到系统的手机联系人界面,单个获取手机联系人信息,展示在ListView中,结果如下:

第一种:

这里写图片描述

第二种:

这里写图片描述

第一种:直接获取所有手机联系人信息

首先需要在AndroidManifest.xml文件中添加权限:


<uses-permission android:name="android.permission.READ_CONTACTS" />
  activity_main.xml布局:
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.android_25.MainActivity">
    <ListView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/lv_lxr"
      >
    </ListView>
  </LinearLayout>

activity_xs.xml布局:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_xs"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.android_25.XsActivity">
  <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:id="@+id/tv_name"
    />
    <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:id="@+id/tv_telephone"
    />
  </LinearLayout>

MainActivity类:


private ListView lv_lxr;
private Button b_name;
private ContentResolver cr;
private List<Map<String, Object>> datalistView;
@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  //获得ListView
  lv_lxr = (ListView) findViewById(R.id.lv_lxr);
  //得到访问者
  cr = getContentResolver();
  //定义一个接收联系人姓名和电话号码的集合
  datalistView = new ArrayList<>();
      Uri uri=Uri.parse("content://com.android.contacts/raw_contacts");
      Cursor cursor= cr.query(uri,null,null,null,null);
      while(cursor.moveToNext()){
        int id=cursor.getInt(cursor.getColumnIndex("_id"));
        Uri uriData=Uri.parse("content://com.android.contacts/raw_contacts/"+id+"/data");
        Cursor contactData= cr.query(uriData,null,null,null,null);
        //用来装姓名
        String aa="";
        //用来装号码
        String bb="";
        while(contactData.moveToNext()){
          String type=contactData.getString(contactData.getColumnIndex("mimetype"));
          //如果获取的是vnd.android.cursor.item/phone_v2则是号码
          if(type.equals("vnd.android.cursor.item/phone_v2")){
            bb=contactData.getString(contactData.getColumnIndex("data1"));
            //如果获取的是vnd.android.cursor.item/name则是姓名
          }else if(type.equals("vnd.android.cursor.item/name")) {
            aa=contactData.getString(contactData.getColumnIndex("data1"));
          }
        }
        //将用户名和号码放入Map集合中
        Map<String,Object> map=new HashMap<>();
        map.put("images",aa);
        map.put("titles",bb);
        datalistView.add(map);
      }
  SimpleAdapter adapter=new SimpleAdapter(this, datalistView,R.layout.activity_xs,new String[]{"images","titles"},new int[]{R.id.tv_name,R.id.tv_telephone});
  lv_lxr.setAdapter(adapter);
}

第二种:通过Butten按钮跳转到系统的手机联系人界面,单个获取手机联系人信息,展示在ListView中

activity_contacts.xml布局:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      android:id="@+id/activity_contacts"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical"
      tools:context="com.example.android_25.ContactsActivity">
    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">
        <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="跳转到联系人页面"
          android:id="@+id/b_tzcontacts"
          />
    </LinearLayout>
    <ListView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
        android:id="@+id/lv_contacts"
      ></ListView>
</LinearLayout>

ContactsActivity类:


private Button b_tzcontacts;
private String phoneName;
private String phoneNumber;
private List<Map<String,Object>> datalistView;
private ListView lv_contacts;
private SimpleAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_contacts);
  //获得跳转到联系人的id
  b_tzcontacts =(Button) findViewById(R.id.b_tzcontacts);
  //获得ListView的ID
  lv_contacts =(ListView) findViewById(R.id.lv_contacts);
  //定义一个接受联系人姓名和电话号码的集合
  datalistView = new ArrayList<>();
  //获取联系人的点击事件
  b_tzcontacts.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {
      Intent intentPhone=new Intent(Intent.ACTION_PICK);
      intentPhone.setData(ContactsContract.Contacts.CONTENT_URI);
      startActivityForResult(intentPhone,0);
    }
  });
  //R.layout.activity_xs就是上文的activity_xs布局问价
  adapter = new SimpleAdapter(this, datalistView, R.layout.activity_xs,new String[]{"images","titles"},new int[]{R.id.tv_name,R.id.tv_telephone});
  lv_contacts.setAdapter(adapter);
}
  //获得返回的结果
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  super.onActivityResult(requestCode, resultCode, data);
  switch (requestCode){
    case 0:
      if(resultCode== Activity.RESULT_OK){
        Uri uri=data.getData();
        Cursor cursor=managedQuery(uri,null,null,null,null);
        cursor.moveToFirst();
        String contactid=cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID));
        //得到ContentResolver
        ContentResolver contentResolver=getContentResolver();
        Cursor phone=contentResolver.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,null,ContactsContract.CommonDataKinds.Phone.CONTACT_ID+"="+contactid,null,null);
        while (phone.moveToNext()){
          //联系人
          phoneName =phone.getString(phone.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
          //手机号码
          phoneNumber =phone.getString(phone.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
          //格式化手机号
          phoneNumber = phoneNumber.replace("-","");
          phoneNumber = phoneNumber.replace("","");
          //将用户名和号码放入Map集合中
          Map<String,Object> map=new HashMap<>();
          map.put("images",phoneName);
          map.put("titles",phoneNumber);
          datalistView.add(map);
        }
        //刷新适配器
        adapter.notifyDataSetChanged();
      }
      break;
  }
}
您可能感兴趣的文章:Android获取手机通讯录、sim卡联系人及调用拨号界面方法Android 获取手机联系人实例代码详解Android获取手机联系人信息Android获取手机联系人电话号码并返回结果Android读取手机通讯录联系人到自己项目android如何获取手机联系人的数据库示例代码Android编程实现读取手机联系人、拨号、发送短信及长按菜单操作方法实例小结浅谈Android手机联系人开发之增删查改功能Android ContentProvider获取手机联系人实例Android ContentProvider实现手机联系人读取和插入


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯