• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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     private final DevelopmentSettingsDashboardFragment mFragment;
32 
AdbPreferenceController(Context context, DevelopmentSettingsDashboardFragment fragment)33     public AdbPreferenceController(Context context, DevelopmentSettingsDashboardFragment fragment) {
34         super(context);
35         mFragment = fragment;
36     }
37 
onAdbDialogConfirmed()38     public void onAdbDialogConfirmed() {
39         writeAdbSetting(true);
40     }
41 
onAdbDialogDismissed()42     public void onAdbDialogDismissed() {
43         updateState(mPreference);
44     }
45 
46     @Override
showConfirmationDialog(@ullable Preference preference)47     public void showConfirmationDialog(@Nullable Preference preference) {
48         EnableAdbWarningDialog.show(mFragment);
49     }
50 
51     @Override
dismissConfirmationDialog()52     public void dismissConfirmationDialog() {
53         // intentional no-op
54     }
55 
56     @Override
isConfirmationDialogShowing()57     public boolean isConfirmationDialogShowing() {
58         // intentional no-op
59         return false;
60     }
61 
62     @Override
onDeveloperOptionsSwitchDisabled()63     protected void onDeveloperOptionsSwitchDisabled() {
64         super.onDeveloperOptionsSwitchDisabled();
65         writeAdbSetting(false);
66         mPreference.setChecked(false);
67     }
68 }
69