5

我正在尝试提取发送的短信。我知道这没有 BroadcastReciver 。所以我发现我可以使用 ContentObserver 来监听数据库中的变化。

我该如何实施?我的目标是只发送新的短信并通过数据库上的 POST 发送

谢谢

4

1 回答 1

1

这是执行此操作的代码片段。关键是使用仅查找“类型=传出消息”的选择。

此外,由于任何更改都可以触发内容数据库,因此请跟踪(以某种方式)已处理的内容。

int THREAD_ID = 0, ADDRESS = 1, DATE = 2, TYPE = 3, BODY = 4, INCOMING = 1, OUTGOING = 2, UNKNOWN = -1;

String[] smsProjection = new String[] {"thread_id", "address", "date", "type", "body"};

ContentResolver cr = context.getContentResolver();

Cursor cursor = context.getContentResolver().query(uri, smsProjection, "type = ? AND date > ?",new String[]{Integer.toString(OUTGOING), Long.toString(lastOutgoingSmsTime)}, null);
于 2012-07-02T01:56:20.217 回答