Home | History | Annotate | Download | only in deskclock
      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.deskclock;
     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 
     33     public AlarmPreference(Context context, AttributeSet attrs) {
     34         super(context, attrs);
     35     }
     36 
     37     @Override
     38     protected void onSaveRingtone(Uri ringtoneUri) {
     39         setAlert(ringtoneUri);
     40     }
     41 
     42     @Override
     43     protected Uri onRestoreRingtone() {
     44         if (RingtoneManager.isDefault(mAlert)) {
     45             return RingtoneManager.getActualDefaultRingtoneUri(getContext(),
     46                     RingtoneManager.TYPE_ALARM);
     47         }
     48         return mAlert;
     49     }
     50 
     51     public void setAlert(Uri alert) {
     52         mAlert = alert;
     53         if (alert != null) {
     54             final Ringtone r = RingtoneManager.getRingtone(getContext(), alert);
     55             if (r != null) {
     56                 setSummary(r.getTitle(getContext()));
     57             }
     58         } else {
     59             setSummary(R.string.silent_alarm_summary);
     60         }
     61     }
     62 
     63     public Uri getAlert() {
     64         return mAlert;
     65     }
     66 }
     67