• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2018 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.gestures;
18 
19 import static android.provider.Settings.Secure.VOLUME_HUSH_GESTURE;
20 import static android.provider.Settings.Secure.VOLUME_HUSH_MUTE;
21 import static android.provider.Settings.Secure.VOLUME_HUSH_VIBRATE;
22 
23 import android.content.Context;
24 import android.provider.Settings;
25 
26 import com.android.settings.R;
27 import com.android.settings.core.BasePreferenceController;
28 
29 public class PreventRingingParentPreferenceController extends BasePreferenceController {
30 
31     final String SECURE_KEY = VOLUME_HUSH_GESTURE;
32 
PreventRingingParentPreferenceController(Context context, String preferenceKey)33     public PreventRingingParentPreferenceController(Context context, String preferenceKey) {
34         super(context, preferenceKey);
35     }
36 
37     @Override
getAvailabilityStatus()38     public int getAvailabilityStatus() {
39         return mContext.getResources().getBoolean(
40                 com.android.internal.R.bool.config_volumeHushGestureEnabled)
41                 ? AVAILABLE_UNSEARCHABLE : UNSUPPORTED_ON_DEVICE;
42     }
43 
44     @Override
getSummary()45     public CharSequence getSummary() {
46         int value = Settings.Secure.getInt(
47                 mContext.getContentResolver(), SECURE_KEY, VOLUME_HUSH_VIBRATE);
48         int summary;
49         switch (value) {
50             case VOLUME_HUSH_VIBRATE:
51                 summary = R.string.prevent_ringing_option_vibrate_summary;
52                 break;
53             case VOLUME_HUSH_MUTE:
54                 summary = R.string.prevent_ringing_option_mute_summary;
55                 break;
56             default:
57                 summary = R.string.prevent_ringing_option_none_summary;
58         }
59         return mContext.getText(summary);
60     }
61 }
62