Can anyone tell me how can I stop this alarm?
I\'m trying to stop it by using a handler but it didn\'t stop it continues to repeat?
Here\'s my code:
//==
make alarm manager global so that the various functions are referencing the same object
Button bStart, bStop ;
long mCurrentTime;
Calendar calendar;
TextView tv;
AlarmManager am
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
...
...
Intent intent = new Intent(AlarmNewActivity.this, RepeatingAlarm.class);
PendingIntent sender = PendingIntent.getBroadcast(AlarmNewActivity.this, 0, intent, 0);
am = (AlarmManager)getSystemService(ALARM_SERVICE);
.....