Jan*_*ott 5 java sms android broadcastreceiver
我想删除我的模拟器中的短信.但在尝试了所有这些例子之后,它仍然无效.
我甚至没有得到错误.在我的活动中,我创建了一个BroadcastReceiver,它对传入的短信作出反应.然后,当处理完成时,应删除SMS.但即使我尝试删除所有邮件,我也无法删除任何邮件.但我可以阅读内容.
也许有人有想法?到目前为止,这是我的代码:
@Override
public void onResume() {
super.onResume();
//registerReceiver(mMessageReceiver, new IntentFilter(Constants.BROADCAST_SMS));
// IntentFilter customIntentFiler = new IntentFilter("android.provider.Telephony.SMS_RECEIVED");
//customIntentFiler.setPriority(1000);
registerReceiver(mMessageReceiver, new IntentFilter("android.provider.Telephony.SMS_RECEIVED"));
// registerReceiver(mMessageReceiver, customIntentFiler);
}
@Override
protected void onPause() {
super.onPause();
unregisterReceiver(mMessageReceiver);
}
//This is the handler that will manage to process the broadcast intent
private BroadcastReceiver mMessageReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
// Extract data included in the Intent
Bundle bundle = intent.getExtras();
if (bundle != null) {
Log.d("[" + Constants.SERVICE_SMS + "] " + "SMS received");
Object[] pdus = (Object[])bundle.get("pdus");
SmsMessage sms = SmsMessage.createFromPdu((byte[])pdus[0]);
//check if SMS content
Log.d("[" + Constants.SERVICE_SMS + "] " + "SMS data:" + sms.getMessageBody().toString());
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
String[] smsParts = sms.getMessageBody().toString().split(";");
//ToDo filter logic
}
}
};
private void DeleteSMS(Context context, Intent intent){
try {
// mLogger.logInfo("Deleting SMS from inbox");
Uri uriSms = Uri.parse("content://sms/inbox");
Cursor c = context.getContentResolver().query(uriSms, new String[] { "_id", "thread_id", "address", "person",
"date", "body" }, null, null, null);
Log.d(Constants.TAG, "[" + Constants.SERVICE_SMS + "] " + "Deleting SMS" + uriSms);
//getContentResolver().delete(Uri.parse("content://sms/1"), null, null);
if (c != null && c.moveToFirst()) {
do {
long id = c.getLong(0);
long threadId = c.getLong(1);
String address = c.getString(2);
String body = c.getString(5);
Log.d(Constants.TAG, "[" + Constants.SERVICE_SMS + "] " + "Deleting SMS ID"+ id);
Log.d(Constants.TAG, "[" + Constants.SERVICE_SMS + "] " + "Deleting SMS threadID" + threadId);
Log.d(Constants.TAG, "[" + Constants.SERVICE_SMS + "] " + "Deleting SMS address" + address);
Log.d(Constants.TAG, "[" + Constants.SERVICE_SMS + "] " + "Deleting SMS body" + body);
getContentResolver().delete(Uri.parse("content://sms/inbox/" + id), null, null);
//getContentResolver().delete(Uri.parse("content://sms/inbox/" + threadId), null, null);
} while (c.moveToNext());
}
} catch (Exception e) {
// mLogger.logError("Could not delete SMS from inbox: " +
// e.getMessage());
Log.d(Constants.TAG, "[" + Constants.SERVICE_SMS + "] " + "Deleting SMS failed");
}
}
Run Code Online (Sandbox Code Playgroud)
我的Manifest的开头看起来像这样:
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.RECEIVE_SMS"/>
<uses-permission android:name="android.permission.WRITE_SMS"/>
<uses-permission android:name="android.permission.READ_SMS"/>
Run Code Online (Sandbox Code Playgroud)
如果您在奇巧之后尝试此应用程序,它将无法工作。
http://android-developers.blogspot.com.tr/2013/10/getting-your-sms-apps-ready-for-kitkat.html?m=1
在游戏商店中查看短信拦截器,他们会告诉您同样的事情。
| 归档时间: |
|
| 查看次数: |
2614 次 |
| 最近记录: |