这是我到目前为止所尝试的
final String SMS_URI_INBox = "content://sms/inBox";Uri uri = Uri.parse(SMS_URI_INBox);String[] projection = new String[] { "_ID","address","person","body","date","type" };Cursor cur = getContentResolver().query(uri,projection,"person liKE'%" + "Google" + "'",null,"date asc");
但是,光标为空.
解决方法 你快到了final String SMS_URI_INBox = "content://sms/inBox";Uri uri = Uri.parse(SMS_URI_INBox);String[] projection = new String[] { "_ID","address liKE '%Google%'","date asc");
而不是查询“人”,查询“地址”. SMS网关使用名称作为地址.
总结以上是内存溢出为你收集整理的Android按发件人姓名查询短信收件箱全部内容,希望文章能够帮你解决Android按发件人姓名查询短信收件箱所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)