Всплывающее окно SMS: AlertDialog не отображается, когда я получаю SMS-сообщение

Я вижу много приложений, которые создают всплывающие окна SMS. Почему я не могу заставить приложение работать? Если приходит SMS-сообщение, я бы хотел, чтобы оно появилось на экране.

Здесь мой код:

public class NotifySMSReceived extends Activity 
{

    private static final String LOG_TAG = "SMSReceiver";

    public static final int NOTIFICATION_ID_RECEIVED = 0x1221;

    static final String ACTION = "android.provider.Telephony.SMS_RECEIVED";


    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);



        IntentFilter filter = new IntentFilter(ACTION);

        this.registerReceiver(mReceivedSMSReceiver, filter);

    }


    private void displayAlert()

    {

        AlertDialog.Builder builder = new AlertDialog.Builder(this);

        builder.setMessage("Are you sure you want to exit?").setCancelable(

                false).setPositiveButton("Yes",
                new DialogInterface.OnClickListener() {

                    public void onClick(DialogInterface dialog, int id) {
                        dialog.cancel();
                    }
                }).setNegativeButton("No",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        dialog.cancel();
                    }
                });
        AlertDialog alert = builder.create();
        alert.show();
    }

    private final BroadcastReceiver mReceivedSMSReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();

            if (ACTION.equals(action)) 
            {
                //your SMS processing code
                displayAlert();
            }
        }
    };    
}

Ответ 1

Я думаю, проблема здесь в контексте объекта. С,

onReceive (контекст контекст, намерение намерения)

Вам следует передать контекст, полученный в onRecive, чтобы он понравился..

private void displayAlert (контекст контекст)

а затем, изменить,

AlertDialog.Builder builder = new AlertDialog.Builder(this);

С

AlertDialog.Builder builder = new AlertDialog.Builder(контекст);

теперь он должен работать. Надеюсь, это поможет.

Приветствия.