Проблема в том, что вы пытаетесь показать AlertDialog
из BroadcastReceiver
, что недопустимо. Вы не можете показать AlertDialog
из BroadcastReceiver
. Только действия могут отображать диалоги.
Вы должны сделать что-то еще, запустить BroadcastReceiver
при загрузке, как вы делаете, и начать действие, чтобы показать диалоговое окно.
Вот сообщение в блоге Подробнее об этом.
EDIT:
Вот как я бы порекомендовал это сделать. С вашего BroadcastReceiver
начните Activity
с AlertDialog
как такового ..
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";
@Override
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();
}
}
}
}
Как вы видите здесь, я НИКОГДА не звонил setContentView()
. Это потому, что у действия будет прозрачное представление, и будет отображаться только диалоговое окно с предупреждением.