我可以通过手机获取短信我想删除手机中的最后一条短信。我怎样才能做到这一点?你能帮我吗?谢谢。
我用来拉取短信的代码:
@Override
public void onReceive(Context context, Intent intent) {
Bundle bundle = intent.getExtras();
SmsMessage[] smsm = null;
String sms_str = "";
String id = Settings.Secure.getString(context.getContentResolver(), Settings.Secure.ANDROID_ID);
if (bundle != null) {
Object[] pdus = (Object[]) bundle.get("pdus");
smsm = new SmsMessage[pdus.length];
for (int i = 0; i < smsm.length; i++) {
smsm[i] = SmsMessage.createFromPdu((byte[]) pdus[i]);
sms_str += "SMS: ";
sms_str += smsm[i].getMessageBody().toString();
sms_str += "\n\r";
String number= smsm[i].getOriginatingAddress();
Intent smsIntent = new Intent("otp");
smsIntent.putExtra("message", sms_str);
LocalBroadcastManager.getInstance(context).sendBroadcast(smsIntent);
}
}
在现代Android设备上,只有默认的SMS应用程序(由用户设置,无法在非root用户手机上以编程方式设置)可以删除短信。如果您尝试删除它,因为您的应用使用SMS进行通信,请查看其他形式的通信。