Android:从 SIM 卡内存访问联系人
我一直在尝试开发一个需要从 SIM 内存访问联系人的应用程序。这是我使用过的代码,但存在运行时异常。
{
Uri simUri = Uri.parse("content://icc/adn");
c=getContentResolver().query(simUri, null, null, null, null);
startManagingCursor(c);
getContacts();
}
private void getContacts(){
int i=0;
do {
// Get the field values
names[i++] = c.getString(0);
} while (c.moveToNext());
任何答案和解决方案都值得赞赏。除此之外,您能告诉我访问 SIM 卡联系人的确切 URI 吗? SIM 卡的联系人内存表中的列有名称吗?
I've been tryin to develop an app which requires to access contacts from SIM memory. Here is the code i've used but there is runtime exception.
{
Uri simUri = Uri.parse("content://icc/adn");
c=getContentResolver().query(simUri, null, null, null, null);
startManagingCursor(c);
getContacts();
}
private void getContacts(){
int i=0;
do {
// Get the field values
names[i++] = c.getString(0);
} while (c.moveToNext());
Any answers and solutions are appreciated. Along with that could you please tell me the exact URI to access sim card contacts?? And is there any name for colums in the sim's contacts memory table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 SIM 联系人内容 URI 看起来正确。
我正在使用以下方法来获取联系方式-
Your content uri for sim contacts looks right.
I am using the following method to get contact details-