请有人告诉我如何删除在 onReceive 方法中捕获的同一条消息。实际上,我希望当在 onReceive 方法上收到按摩时,它首先使用关闭,使用后删除,但我不知道,所以请帮助我以防万一。我正在使用的代码也带有这个线程的标签。
@Override
public void onReceive(Context context,final Intent intents){
if (intents.getAction().equals(ConstantClass.SMS_RECEIVED)) {
new Thread(){
Context context;
Thread Set(Context ctx){
this.context=ctx;
return this;
}
public void run(){
try{
Bundle bundle = intents.getExtras();
if (bundle != null) {
Object[] pdus = (Object[]) bundle.get("pdus");
SmsMessage[] messages = new SmsMessage[pdus.length];
for (int i = 0; i < pdus.length; i++)
messages[i] = SmsMessage.createFromPdu((byte[]) pdus[i]);
String msg=null;
String address = null;
for (SmsMessage message : messages) {
msg = message.getMessageBody();
address = message.getOriginatingAddress();
}
dba.Open();
int id = dba.getCordiId(address);
int count = dba.getDeviceCount(ConstantClass.dbName[1]);
if(count<=0){
dba.InsertCurrentCoord(id,id);
}else{
Strsql = new String("UPDATE " + ConstantClass.dbName[1] + " SET " + DataBaseAdapter.Key_ReceiverCoord + " = " +
Integer.toString(id) + " WHERE " + DataBaseAdapter.Key_ID + " = ?");
dba.UpdateQuery(Strsql, Integer.toString(id));
}
dba.Close();
////////////sending to SMSSync class//////////////
MainThread th = new MainThread(sync,msg);
try{
th.thread.join();
}catch(Exception e){
Toast.makeText(context, e.getMessage(), Toast.LENGTH_SHORT).show();
}
if(msg.substring(3, 4).equals("2"))
ConstantClass.isAuditrequestSend = true;
}
/*******after receiving the sms opening the Main Screen.*****************/
Intent intent = new Intent(context,ZigbeeActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
abortBroadcast();
/************Now deleting the SMS from the Inbox*********************/
Uri uriSms = Uri.parse("content://sms");
Cursor c = context.getContentResolver().query(uriSms, null,null,null,null);
int trId= c.getInt(0);
int thread_id =c.getInt(1);
context.getContentResolver().delete(Uri.parse("content://sms/conversations/" + thread_id),null,null);
}catch(Exception e){
dlg = new ExceptionDialog(context,"On Sms Receiver",e.getMessage());
dlg.show();
}
}
}.Set(context).start();
}
}