短信是手机常见的功能,本文就以实例形式讲述了Android实现将已发送的短信写入短信数据库的方法。分享给大家供大家参考之用。具体如下:
一般来说,把短信发送出去以后,需要把已发送的短信写入短信数据库。短信数据库有多个Uri,其中已发送的Uri是content://sms/sent。
具体功能代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 把短信写入数据库
public void writeMsg(){
try {
ContentValues values = new ContentValues();
// 发送时间
values.put( "date" , System.currentTimeMillis());
// 阅读状态
values.put( "read" , 0 );
// 类型:1为收,2为发
values.put( "type" , 2 );
// 发送号码
values.put( "address" ,smsWidget.str_number);
// 发送内容
values.put( "body" , content);
// 插入短信库
getContentResolver().insert(Uri.parse( "content://sms/sent" ), values);
} catch (Exception e) {
Log.d( "Exception" , e.getMessage());
}
}
|
定义一个新的ContentValues,将短信的相关数据put进去,然后getContentResolver().insert()就可以了。
希望本文所述对大家的Android程序设计有所帮助。