Searched refs:nextAlarm (Results 1 – 3 of 3) sorted by relevance
200 final String nextAlarm = Utils.getNextAlarm(context); in refreshAlarm() local201 if (!TextUtils.isEmpty(nextAlarm)) { in refreshAlarm()202 widget.setTextViewText(R.id.nextAlarm, in refreshAlarm()203 context.getString(R.string.control_set_alarm_with_existing, nextAlarm)); in refreshAlarm()204 widget.setViewVisibility(R.id.nextAlarm, View.VISIBLE); in refreshAlarm()206 Log.v(TAG, "DigitalWidget sets next alarm string to " + nextAlarm); in refreshAlarm()209 widget.setViewVisibility(R.id.nextAlarm, View.GONE); in refreshAlarm()
143 AlarmInstance nextAlarm = null; in updateNextAlarm() local147 if (nextAlarm == null || instance.getAlarmTime().before(nextAlarm.getAlarmTime())) { in updateNextAlarm()148 nextAlarm = instance; in updateNextAlarm()151 AlarmNotifications.registerNextAlarmWithAlarmManager(context, nextAlarm); in updateNextAlarm()
480 final String nextAlarm = getNextAlarm(context); in refreshAlarm() local482 nextAlarmView = (TextView) clock.findViewById(R.id.nextAlarm); in refreshAlarm()483 if (!TextUtils.isEmpty(nextAlarm) && nextAlarmView != null) { in refreshAlarm()485 context.getString(R.string.control_set_alarm_with_existing, nextAlarm)); in refreshAlarm()487 R.string.next_alarm_description, nextAlarm)); in refreshAlarm()