android通过姓名搜索联系人电话,Android获取联系人姓名和电话代码

在开发中往往有要获取联系人列表的功能,但是这次却不是获取联系人列表,而是在联系人列表点击单个联系人,获取单个联系人的姓名和电话,并设置在指定的输入框内,方便用户的使用;以下是实现的代码:

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical" >

android:layout_width="fill_parent"

android:layout_height="40dp"

android:orientation="horizontal" >

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="bottom"

android:paddingLeft="10dp"

android:text="姓名:"

android:textColor="@android:color/black"

android:textSize="13sp" />

android:id="@+id/et_name"

android:layout_width="200dp"

android:layout_height="fill_parent"

android:layout_marginLeft="10dp" />

android:id="@+id/btn1"

android:layout_width="wrap_content"

android:layout_height="40dp"

android:text="点击" />

android:layout_width="fill_parent"

android:layout_height="40dp"

android:orientation="horizontal" >

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="bottom"

android:paddingLeft="10dp"

android:text="电话:"

android:textColor="@android:color/black"

android:textSize="13sp" />

android:id="@+id/et_phone"

android:layout_width="200dp"

android:layout_height="fill_parent"

android:layout_marginLeft="10dp"

android:inputType="phone" />

这个就是一个普通的布局文件代码;

/**

* 获取联系人电话

*

* @param cursor

* @param context

* @return

*/

private ContactBen getContactPhone(Cursor cursor, Context context) {

ContactBen vo = new ContactBen();

int phoneColumn = cursor.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER);

int phoneNum = 0;

try {

phoneNum = cursor.getInt(phoneColumn);

} catch (Exception e) {

return null;

}

// String phoneResult = "";

if (phoneNum > 0) {

// 获得联系人的ID号

int idColumn = cursor.getColumnIndex(ContactsContract.Contacts._ID);

String contactId = cursor.getString(idColumn);

vo.name = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));

// 获得联系人的电话号码的cursor;

Cursor phones = context.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,

ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = " + contactId, null, null);

if (phones.moveToFirst()) {

// 遍历所有的电话号码

for (; !phones.isAfterLast(); phones.moveToNext()) {

int index = phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER);

int typeindex = phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.TYPE);

int phone_type = phones.getInt(typeindex);

String phoneNumber = phones.getString(index);

switch (phone_type) {

case 2:

vo.phone = phoneNumber;

break;

}

}

if (!phones.isClosed()) {

phones.close();

}

}

}

return vo;

}

这里是主要功能的代码,在这里要做一个try catch的动作,因为Android手机的话会将微信还有qq的联系方式也添加到列表中,但是其实是没有电话号码,点击返回的时候,就会获取不到,如果没有try catch的就会报异常;

@Override

protected void onActivityResult(int requestCode, int resultCode, Intent data) {

super.onActivityResult(requestCode, resultCode, data);

switch (requestCode) {

case (1): {

if (resultCode == Activity.RESULT_OK) {

if (data != null) {

Uri contactData = data.getData();

@SuppressWarnings("deprecation")

Cursor c = MainActivity.this.managedQuery(contactData, null, null, null, null);

c.moveToFirst();

ContactBen contactPhone = getContactPhone(c, MainActivity.this);

if (contactPhone == null) {

contactPhone = new ContactBen();

}

et_name.setText("" + contactPhone.name);

et_phone.setText("" + contactPhone.phone);

}

}

break;

}

}

}

这里是获取值的一个回调,在这个回调中可以获取到你想要的数据;

findViewById(R.id.btn1).setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

requestPermission(new String[] { Manifest.permission.READ_CONTACTS }, new PermissionHandler() {

@Override

public void onGranted() {

Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);

startActivityForResult(intent, 1);

}

@Override

public void onDenied() {

super.onDenied();

}

});

}

});

这里是点击事件的处理,已经做了android6.0及6.0以上系统权限的适配了;最后记得在清单文件中添加相应的权限:

最终效果如下:

c93c9bb1d3269b0b98e37c2d6d2ffa26.gif

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值