Home | History | Annotate | Download | only in deskclock

Lines Matching refs:snooze

65                 snooze();
105 // Register to get the alarm killed/snooze/dismiss intent.
123 /* snooze behavior: pop a snooze confirmation view, kick alarm
125 Button snooze = (Button) findViewById(R.id.snooze);
126 snooze.requestFocus();
127 snooze.setOnClickListener(new Button.OnClickListener() {
129 snooze();
145 // Attempt to snooze this alert.
146 private void snooze() {
147 // Do not snooze if the snooze button is disabled.
148 if (!findViewById(R.id.snooze).isEnabled()) {
152 final String snooze =
155 int snoozeMinutes = Integer.parseInt(snooze);
162 // Get the display time for the snooze and update the notification.
188 // Intentionally log the snooze time for debugging.
191 // Display the snooze minutes in a toast.
234 // If the alarm was deleted at some point, disable snooze.
236 Button snooze = (Button) findViewById(R.id.snooze);
237 snooze.setEnabled(false);
262 snooze();