{ Uri uri = Uri.parse("content://sms/inbox");
Cursor c = null;
try
{ c= getContentResolver().query(uri, null, null ,null,null);
if(c==null)
{ options[0]="cursor created but nothing in it";
}
}
finally
{ options[0]="crashed while initialing cursor";
c.close();
}
``}
此代码崩溃。我不知道为什么 。 有人可以解释如何从收件箱中获取内容。 [SO上有很多帖子相关,我读过它们仍然没有得到 为什么我的代码崩溃了。]