1 /*
2  * Copyright (C) 2019 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.car.developeroptions.notification;
18 
19 import static android.provider.Settings.Secure.NOTIFICATION_BUBBLES;
20 
21 import android.content.Context;
22 import android.provider.Settings;
23 
24 import com.android.car.developeroptions.R;
25 import com.android.car.developeroptions.core.BasePreferenceController;
26 
27 import androidx.annotation.VisibleForTesting;
28 
29 public class BubbleSummaryNotificationPreferenceController extends BasePreferenceController {
30 
31     @VisibleForTesting
32     static final int ON = 1;
33 
BubbleSummaryNotificationPreferenceController(Context context, String preferenceKey)34     public BubbleSummaryNotificationPreferenceController(Context context, String preferenceKey) {
35         super(context, preferenceKey);
36     }
37 
38     @Override
getSummary()39     public CharSequence getSummary() {
40         return mContext.getString(
41                 areBubblesEnabled() ? R.string.switch_on_text : R.string.switch_off_text);
42     }
43 
44     @Override
getAvailabilityStatus()45     public int getAvailabilityStatus() {
46         return AVAILABLE;
47     }
48 
areBubblesEnabled()49     private boolean areBubblesEnabled() {
50         return Settings.Secure.getInt(mContext.getContentResolver(),
51                 NOTIFICATION_BUBBLES, ON) == ON;
52     }
53 }
54