blob: 92c32b19540b832aa4bddbd0159f006dc2df1723 [file] [log] [blame]
Heemin Seogf401cf22018-12-06 16:34:00 -08001/*
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
17package com.android.car.settings.system;
18
davidln8cd37362018-12-12 10:51:39 -080019import android.car.drivingstate.CarUxRestrictions;
Heemin Seogf401cf22018-12-06 16:34:00 -080020import android.content.Context;
Anthony Hugh492f1842019-07-11 13:50:15 -070021import android.os.UserManager;
Heemin Seogf401cf22018-12-06 16:34:00 -080022
davidln8cd37362018-12-12 10:51:39 -080023import androidx.preference.Preference;
24
Heemin Seogf401cf22018-12-06 16:34:00 -080025import com.android.car.settings.common.FragmentController;
davidln8cd37362018-12-12 10:51:39 -080026import com.android.car.settings.common.PreferenceController;
Heemin Seogf401cf22018-12-06 16:34:00 -080027import com.android.car.settings.development.DevelopmentSettingsUtil;
28
29/** Controls the visibility of the developer options setting. */
davidln8cd37362018-12-12 10:51:39 -080030public class DeveloperOptionsEntryPreferenceController extends PreferenceController<Preference> {
Heemin Seogf401cf22018-12-06 16:34:00 -080031
Anthony Hugh492f1842019-07-11 13:50:15 -070032 private UserManager mUserManager;
Heemin Seogf401cf22018-12-06 16:34:00 -080033
davidln8cd37362018-12-12 10:51:39 -080034 public DeveloperOptionsEntryPreferenceController(Context context, String preferenceKey,
35 FragmentController fragmentController, CarUxRestrictions uxRestrictions) {
36 super(context, preferenceKey, fragmentController, uxRestrictions);
Anthony Hugh492f1842019-07-11 13:50:15 -070037 mUserManager = UserManager.get(context);
Heemin Seogf401cf22018-12-06 16:34:00 -080038 }
39
40 @Override
davidln8cd37362018-12-12 10:51:39 -080041 protected Class<Preference> getPreferenceType() {
42 return Preference.class;
43 }
44
45 @Override
46 protected int getAvailabilityStatus() {
Anthony Hughf9447d62019-07-16 16:23:00 -070047 return DevelopmentSettingsUtil.isDevelopmentSettingsEnabled(getContext(), mUserManager)
48 ? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
Heemin Seogf401cf22018-12-06 16:34:00 -080049 }
50}