これのリファクタリングされたバージョンを使用して、必要なものを取得できると思います。
サンプル:
private int deleteMessage(Context context, SmsMessage msg) {
Uri deleteUri = Uri.parse("content://sms");
int count = 0;
Cursor c = context.getContentResolver().query(deleteUri, null, null,
null, null);
while (c.moveToNext()) {
try {
// Delete the SMS
String pid = c.getString(0); // Get id;
String uri = "content://sms/" + pid;
count = context.getContentResolver().query(Uri.parse(uri),
null,
"date('sentDate') - date('%M', '15') > date('now')",
null,
null);
} catch (Exception e) {
}
}
return count;
}
SQL は完全に間違っている可能性がありますが、このようなものは機能するはずです。