0

我在我的应用程序中为多个任务设置了重复警报。我正在正确收到所有任务通知。但是当我点击关闭按钮时,警报并没有取消。我已经为用户创建了警报对话框通知。

我将 DB _id 传递给不同任务PendingIntentUniqueId多个警报。警报正常响起,但没有停止。请指导我这样做。

这是我设置警报的活动课程

protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.alarm_layout);
// some code..
setalarm.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View arg0) {
        // TODO Auto-generated method stub

        idval=idval+1;    // Fetching this Id from DB.
        alarm_intent= new Intent(AlarmActivity.this, ReceiverActivity.class);
        alarm_intent.putExtra("STR_TEXT", str_text);
        alarm_intent.putExtra("CLS_ID", idval);
        pendingIntent = PendingIntent.getBroadcast(AlarmActivity.this, idval, alarm_intent, PendingIntent.FLAG_UPDATE_CURRENT);

        Date dat  = new Date();//initializes to now
        Calendar cal_alarm = Calendar.getInstance();
        Calendar cal_now = Calendar.getInstance();
        cal_now.setTime(dat);

    //  mYear, mMonth, mDay, mhours24, mminutes taking this vales from DatePicker & TimePicker

cal_alarm.set(mYear, mMonth, mDay, mhours24, mminutes, 0);
        if(cal_alarm.before(cal_now))
        {
            cal_alarm.add(Calendar.DATE,1); //if its in the past increment
        }

        String temp_val=(String)spinner1.getSelectedItem(); 
        AlarmManager noteam = (AlarmManager)getSystemService(Context.ALARM_SERVICE);                
        if(temp_val.equals("One Time"))
        {
            noteam.set(AlarmManager.RTC_WAKEUP, cal_alarm.getTimeInMillis(), pendingIntent);
       }
        else if(temp_val.equals("Every 5 Minutes"))
        {
            noteam.setRepeating(AlarmManager.RTC_WAKEUP, cal_alarm.getTimeInMillis(), 300000, pendingIntent);
      }
        else if(temp_val.equals("Every 10 Mintues"))
        {
            noteam.setRepeating(AlarmManager.RTC_WAKEUP, cal_alarm.getTimeInMillis(), 600000, pendingIntent);
        }
        else if(temp_val.equals("Every 30 Minutes"))
        {
            noteam.setRepeating(AlarmManager.RTC_WAKEUP, cal_alarm.getTimeInMillis(), 1800000, pendingIntent);
        }
        else if(temp_val.equals("Every 1 hour"))
        {
            noteam.setRepeating(AlarmManager.RTC_WAKEUP, cal_alarm.getTimeInMillis(), 3600000, pendingIntent);
        }
    }
});

}

和另一个Activity我取消警报的地方

protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState); 

        //some code..
        clsID=extra.getInt("CLS_ID");
        new AlertDialog.Builder(AlertBoxNotification.this)
        .setTitle("Title")
        .setMessage("Message for user")
        .setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
        @SuppressLint("NewApi")
        @Override
            public void onClick(DialogInterface arg0, int arg1) {
            // TODO Auto-generated method stub
                finish();
                arg0.dismiss();
            }
        })
        .setNegativeButton(R.string.dismissbtn, new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface arg0, int arg1) {
            Intent intent = new Intent(AlertBoxNotification.this, AlarmActivity.class);
                    PendingIntent psender = PendingIntent.getBroadcast(AlarmActivity.mycontext = getApplicationContext(), clsID, intent, 0);
                    AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);
                    am.cancel(psender);
                    Toast.makeText(getApplicationContext(), "Alarm cancel ", Toast.LENGTH_LONG).show();

            }
        }).create().show();
    }
4

2 回答 2

1

我改变了这个

PendingIntent psender = PendingIntent.getBroadcast(AlarmActivity.mycontext = getApplicationContext(), clsID, intent, 0);

 pISender = PendingIntent.getBroadcast(getBaseContext(), clsID, intent, 0);

PendingIntent走向全球。现在警报正在从另一个活动中取消(从对话框中)。

于 2013-05-07T05:44:39.147 回答
0

Pending Intent 的请求代码需要在两个地方都相同。

于 2013-05-04T11:31:52.240 回答