blob: 9bf626c9898c9a474d6a09db8e2e261546e4c630 [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001/*
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
17package com.android.settings;
18
19
20import android.content.Context;
21import android.content.Intent;
22import android.media.RingtoneManager;
23import android.net.Uri;
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080024import android.util.AttributeSet;
Arc Wange4c22582022-05-06 17:42:30 +080025import android.util.Log;
26
27import androidx.annotation.VisibleForTesting;
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080028
29public class DefaultRingtonePreference extends RingtonePreference {
30 private static final String TAG = "DefaultRingtonePreference";
Andre Lago3e398c82016-07-25 14:12:28 +010031
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080032 public DefaultRingtonePreference(Context context, AttributeSet attrs) {
33 super(context, attrs);
34 }
35
36 @Override
Jason Monk39b46742015-09-10 15:52:51 -040037 public void onPrepareRingtonePickerIntent(Intent ringtonePickerIntent) {
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080038 super.onPrepareRingtonePickerIntent(ringtonePickerIntent);
Andre Lago3e398c82016-07-25 14:12:28 +010039
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080040 /*
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 Projectafc4ab22009-03-03 19:32:34 -080045 }
46
47 @Override
48 protected void onSaveRingtone(Uri ringtoneUri) {
Arc Wangec3ae8b2022-05-16 14:36:19 +080049 if (ringtoneUri == null) {
50 setActualDefaultRingtoneUri(ringtoneUri);
51 return;
52 }
53
Tsung-Mao Fang40fbcf32022-05-27 15:52:30 +080054 String mimeType = mUserContext.getContentResolver().getType(ringtoneUri);
Arc Wange4c22582022-05-06 17:42:30 +080055 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 Lago3e398c82016-07-25 14:12:28 +010072 RingtoneManager.setActualDefaultRingtoneUri(mUserContext, getRingtoneType(), ringtoneUri);
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080073 }
74
75 @Override
76 protected Uri onRestoreRingtone() {
Andre Lago3e398c82016-07-25 14:12:28 +010077 return RingtoneManager.getActualDefaultRingtoneUri(mUserContext, getRingtoneType());
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080078 }
Andre Lago3e398c82016-07-25 14:12:28 +010079
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080080}