1 /* 2 * Copyright (C) 2016 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 package com.android.settings.network; 17 18 import android.app.admin.DevicePolicyManager; 19 import android.content.Context; 20 import android.support.v7.preference.Preference; 21 import android.support.v7.preference.PreferenceScreen; 22 23 import com.android.settings.core.PreferenceControllerMixin; 24 import com.android.settingslib.core.AbstractPreferenceController; 25 26 public class ProxyPreferenceController extends AbstractPreferenceController 27 implements PreferenceControllerMixin { 28 29 private static final String KEY_PROXY_SETTINGS = "proxy_settings"; 30 ProxyPreferenceController(Context context)31 public ProxyPreferenceController(Context context) { 32 super(context); 33 } 34 35 @Override isAvailable()36 public boolean isAvailable() { 37 // proxy UI disabled until we have better app support 38 return false; 39 } 40 41 @Override displayPreference(PreferenceScreen screen)42 public void displayPreference(PreferenceScreen screen) { 43 super.displayPreference(screen); 44 // Enable Proxy selector settings if allowed. 45 final Preference pref = screen.findPreference(KEY_PROXY_SETTINGS); 46 if (pref != null) { 47 final DevicePolicyManager dpm = (DevicePolicyManager) 48 mContext.getSystemService(Context.DEVICE_POLICY_SERVICE); 49 pref.setEnabled(dpm.getGlobalProxyAdmin() == null); 50 } 51 } 52 53 @Override getPreferenceKey()54 public String getPreferenceKey() { 55 return KEY_PROXY_SETTINGS; 56 } 57 } 58