Моя проблема здесь Я просочился из registedReceiver. Я искал любую инструкцию о том, как я должен закрыть registedReceiver, которым они инструктируют, что вы должны закрыть ее в onPause или ondestroy, но я не могу найти ничего о том, как я закрываю свою.Android - как удалить регистрацию в регистреРецептор из другого класса
Мой код
public class SMSHandler{
String SENT = "SMS_SENT";
String DELIVERED = "SMS_DELIVERED";
public SMSHandler(Context context, String phoneNum, String message){
sendSMS(context,phoneNum,message);
}
private void sendSMS(Context context,String phoneNum, String message) {
PendingIntent sentPI = PendingIntent.getBroadcast(context, 0, new Intent(
SENT), 0);
PendingIntent deliveredPI = PendingIntent.getBroadcast(context, 0,
new Intent(DELIVERED), 0);
// when the sms has been sent
context.registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
switch(getResultCode()){
case Activity.RESULT_OK:
Toast.makeText(context, "SMS sent", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
Toast.makeText(context, "Generic Failure", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NO_SERVICE:
Toast.makeText(context, "No Service", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
Toast.makeText(context, "Null PDU", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
Toast.makeText(context, "Radio off", Toast.LENGTH_SHORT).show();
break;
}
}
},new IntentFilter(SENT));
context.registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
switch(getResultCode()){
case Activity.RESULT_OK:
Toast.makeText(context, "SMS delivered", Toast.LENGTH_SHORT).show();
break;
case Activity.RESULT_CANCELED:
Toast.makeText(context, "SMS note delivered", Toast.LENGTH_SHORT).show();
break;
}
}
}, new IntentFilter(DELIVERED));
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNum, null, message, sentPI, deliveredPI);
}
}
Вы не можете отменить регистрацию анонимного объекта. Попробуйте сохранить ссылку где-нибудь, где вы можете поделиться получателем с другими клиентами. – JoxTraex