安卓开发--------短信数据库的查找和添加
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓开发--------短信数据库的查找和添加相关的知识,希望对你有一定的参考价值。
ContentResolver resolver = context.getContentResolver(); //内容提供者
Uri uri = Uri.parse("content://sms/");//短信的uri
增加
resolver.insert(uri, values); values是 ContentValues values = new ContentValues(); 一个键值对的集合 添加方法 values.put(key, value);
查找
Cursor cursor = resolver.query(uri, new String[] { "address","body", "type", "date" }, null, null, null); "address","body", "type", "date" 分别对应短信数据库的 地址(发送和接收的号码) 内容 类型(发送或者接收) 时间
以上是关于安卓开发--------短信数据库的查找和添加的主要内容,如果未能解决你的问题,请参考以下文章