有没有办法获得
Android手机所有者的名字和姓氏?我搜索互联网,但我没有运气.我在Stackoverlow中偶然发现了
this的问题,但这是所有联系人的名字和姓氏.我需要的只是获取所有者的名字和姓氏.
解决方法
我认为这是可用的ICS只有 – 看这个更多的信息
http://android-codelabs.appspot.com/resources/tutorials/contactsprovider/ex1.html
Cursor c = activity.getContentResolver().query(ContactsContract.Profile.CONTENT_URI,null,null); int count = c.getCount(); String[] columnNames = c.getColumnNames(); boolean b = c.moveToFirst(); int position = c.getPosition(); if (count == 1 && position == 0) { for (int j = 0; j < columnNames.length; j++) { String columnName = columnNames[j]; String columnValue = c.getString(c.getColumnIndex(columnName))); ... //Use the values } } c.close();
Android包含代表设备所有者的个人资料 – 此配置文件称为“Me”配置文件,并存储在ContactsContract.Profile表中.只要你能够从用户的个人资料中读取数据
在您的AndroidManifest.xml中添加READ_PROFILE和READ_CONTACTS权限.
您最相关的字段是“联系人”中的DISPLAY_NAME列,可能是“结构化名称”字段