1 /* 2 * Copyright (C) 2008 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.alarmclock; 18 19 import android.content.Context; 20 import android.media.Ringtone; 21 import android.media.RingtoneManager; 22 import android.net.Uri; 23 import android.preference.RingtonePreference; 24 import android.util.AttributeSet; 25 26 /** 27 * The RingtonePreference does not have a way to get/set the current ringtone so 28 * we override onSaveRingtone and onRestoreRingtone to get the same behavior. 29 */ 30 public class AlarmPreference extends RingtonePreference { 31 private Uri mAlert; 32 AlarmPreference(Context context, AttributeSet attrs)33 public AlarmPreference(Context context, AttributeSet attrs) { 34 super(context, attrs); 35 } 36 37 @Override onSaveRingtone(Uri ringtoneUri)38 protected void onSaveRingtone(Uri ringtoneUri) { 39 setAlert(ringtoneUri); 40 } 41 42 @Override onRestoreRingtone()43 protected Uri onRestoreRingtone() { 44 return mAlert; 45 } 46 setAlert(Uri alert)47 public void setAlert(Uri alert) { 48 mAlert = alert; 49 if (alert != null) { 50 final Ringtone r = RingtoneManager.getRingtone(getContext(), alert); 51 if (r != null) { 52 setSummary(r.getTitle(getContext())); 53 } 54 } else { 55 setSummary(R.string.silent_alarm_summary); 56 } 57 } 58 getAlertString()59 public String getAlertString() { 60 if (mAlert != null) { 61 return mAlert.toString(); 62 } 63 return Alarms.ALARM_ALERT_SILENT; 64 } 65 } 66