1 /*
2  * Copyright (C) 2017 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.development;
18 
19 
20 import android.content.Context;
21 
22 import androidx.annotation.Nullable;
23 import androidx.preference.Preference;
24 
25 import com.android.settings.core.PreferenceControllerMixin;
26 import com.android.settingslib.development.AbstractEnableAdbPreferenceController;
27 
28 public class AdbPreferenceController extends AbstractEnableAdbPreferenceController implements
29         PreferenceControllerMixin {
30 
31     @Nullable private final DevelopmentSettingsDashboardFragment mFragment;
32 
AdbPreferenceController(Context context, @Nullable DevelopmentSettingsDashboardFragment fragment)33     public AdbPreferenceController(Context context,
34         @Nullable DevelopmentSettingsDashboardFragment fragment) {
35         super(context);
36         mFragment = fragment;
37     }
38 
onAdbDialogConfirmed()39     public void onAdbDialogConfirmed() {
40         writeAdbSetting(true);
41     }
42 
onAdbDialogDismissed()43     public void onAdbDialogDismissed() {
44         updateState(mPreference);
45     }
46 
47     @Override
showConfirmationDialog(@ullable Preference preference)48     public void showConfirmationDialog(@Nullable Preference preference) {
49         EnableAdbWarningDialog.show(mFragment);
50     }
51 
52     @Override
dismissConfirmationDialog()53     public void dismissConfirmationDialog() {
54         // intentional no-op
55     }
56 
57     @Override
isConfirmationDialogShowing()58     public boolean isConfirmationDialogShowing() {
59         // intentional no-op
60         return false;
61     }
62 
63     @Override
onDeveloperOptionsSwitchDisabled()64     protected void onDeveloperOptionsSwitchDisabled() {
65         super.onDeveloperOptionsSwitchDisabled();
66         writeAdbSetting(false);
67         mPreference.setChecked(false);
68     }
69 }
70