The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 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.settings; |
| 18 | |
| 19 | |
| 20 | import android.content.Context; |
| 21 | import android.content.Intent; |
| 22 | import android.media.RingtoneManager; |
| 23 | import android.net.Uri; |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 24 | import android.util.AttributeSet; |
Arc Wang | e4c2258 | 2022-05-06 17:42:30 +0800 | [diff] [blame] | 25 | import android.util.Log; |
| 26 | |
| 27 | import androidx.annotation.VisibleForTesting; |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 28 | |
| 29 | public class DefaultRingtonePreference extends RingtonePreference { |
| 30 | private static final String TAG = "DefaultRingtonePreference"; |
Andre Lago | 3e398c8 | 2016-07-25 14:12:28 +0100 | [diff] [blame] | 31 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 32 | public DefaultRingtonePreference(Context context, AttributeSet attrs) { |
| 33 | super(context, attrs); |
| 34 | } |
| 35 | |
| 36 | @Override |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 37 | public void onPrepareRingtonePickerIntent(Intent ringtonePickerIntent) { |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 38 | super.onPrepareRingtonePickerIntent(ringtonePickerIntent); |
Andre Lago | 3e398c8 | 2016-07-25 14:12:28 +0100 | [diff] [blame] | 39 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 40 | /* |
| 41 | * Since this preference is for choosing the default ringtone, it |
| 42 | * doesn't make sense to show a 'Default' item. |
| 43 | */ |
| 44 | ringtonePickerIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_SHOW_DEFAULT, false); |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | @Override |
| 48 | protected void onSaveRingtone(Uri ringtoneUri) { |
Arc Wang | ec3ae8b | 2022-05-16 14:36:19 +0800 | [diff] [blame] | 49 | if (ringtoneUri == null) { |
| 50 | setActualDefaultRingtoneUri(ringtoneUri); |
| 51 | return; |
| 52 | } |
| 53 | |
Tsung-Mao Fang | 40fbcf3 | 2022-05-27 15:52:30 +0800 | [diff] [blame] | 54 | String mimeType = mUserContext.getContentResolver().getType(ringtoneUri); |
Arc Wang | e4c2258 | 2022-05-06 17:42:30 +0800 | [diff] [blame] | 55 | if (mimeType == null) { |
| 56 | Log.e(TAG, "onSaveRingtone for URI:" + ringtoneUri |
| 57 | + " ignored: failure to find mimeType (no access from this context?)"); |
| 58 | return; |
| 59 | } |
| 60 | |
| 61 | if (!(mimeType.startsWith("audio/") || mimeType.equals("application/ogg"))) { |
| 62 | Log.e(TAG, "onSaveRingtone for URI:" + ringtoneUri |
| 63 | + " ignored: associated mimeType:" + mimeType + " is not an audio type"); |
| 64 | return; |
| 65 | } |
| 66 | |
| 67 | setActualDefaultRingtoneUri(ringtoneUri); |
| 68 | } |
| 69 | |
| 70 | @VisibleForTesting |
| 71 | void setActualDefaultRingtoneUri(Uri ringtoneUri) { |
Andre Lago | 3e398c8 | 2016-07-25 14:12:28 +0100 | [diff] [blame] | 72 | RingtoneManager.setActualDefaultRingtoneUri(mUserContext, getRingtoneType(), ringtoneUri); |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | @Override |
| 76 | protected Uri onRestoreRingtone() { |
Andre Lago | 3e398c8 | 2016-07-25 14:12:28 +0100 | [diff] [blame] | 77 | return RingtoneManager.getActualDefaultRingtoneUri(mUserContext, getRingtoneType()); |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 78 | } |
Andre Lago | 3e398c8 | 2016-07-25 14:12:28 +0100 | [diff] [blame] | 79 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 80 | } |