2

我想知道如何获得所有短信对话,例如;我说(日期/时间):blabla,联系人说:blabla,我想检索 Uri 我需要的所有对话,正确的方法是什么?

4

1 回答 1

2

内容解析器( "content://sms/inbox") 可用于阅读收件箱中的短信。

Cursor c = getContentResolver().query(Uri.parse("content://sms/inbox"), null, null, null, null);
c.moveToFirst();

do{
   String msgBody = "";
   for(int col=0; col < c.getColumnCount(); col++)
   {
       msgBody += " " + c.getColumnName(col) + ":" + c.getString(col);
   }
}while(c.moveToNext());

这是一个可能会派上用场的样本!

于 2012-10-09T18:27:19.533 回答