We decided to use the list preference after all due to some devices not supporting various combinations of AP configurations. This change makes it so that there are three different UIs depending on the configurations which are supported. - 5.0 GHz unsupported: disable the preference and just set the value to 2.4 GHz - all supported, no dual mode: allow the user to choose EITHER 2.4 GHz or 5.0 GHz - all supported, dual mode: allow the user to choose 2.4 GHz or BOTH 2.4 GHz & 5.0 GHz with 5.0 being preferred Test: atest SettingsRoboTests Bug: 80315296 Change-Id: I888d35811a98b8cf0155a3cb96c42ff762763378
142 lines
5.1 KiB
Java
142 lines
5.1 KiB
Java
/*
|
|
* Copyright (C) 2017 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.wifi.tether;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.net.wifi.WifiConfiguration;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.preference.ListPreference;
|
|
import androidx.preference.Preference;
|
|
import android.util.Log;
|
|
|
|
import com.android.settings.R;
|
|
|
|
public class WifiTetherApBandPreferenceController extends WifiTetherBasePreferenceController {
|
|
|
|
private static final String TAG = "WifiTetherApBandPref";
|
|
private static final String PREF_KEY = "wifi_tether_network_ap_band";
|
|
|
|
private String[] mBandEntries;
|
|
private String[] mBandSummaries;
|
|
private int mBandIndex;
|
|
private boolean isDualMode;
|
|
|
|
public WifiTetherApBandPreferenceController(Context context,
|
|
OnTetherConfigUpdateListener listener) {
|
|
super(context, listener);
|
|
isDualMode = mWifiManager.isDualModeSupported();
|
|
updatePreferenceEntries();
|
|
}
|
|
|
|
@Override
|
|
public void updateDisplay() {
|
|
final WifiConfiguration config = mWifiManager.getWifiApConfiguration();
|
|
if (config == null) {
|
|
mBandIndex = 0;
|
|
Log.d(TAG, "Updating band index to 0 because no config");
|
|
} else if (is5GhzBandSupported()) {
|
|
mBandIndex = validateSelection(config.apBand);
|
|
Log.d(TAG, "Updating band index to " + mBandIndex);
|
|
} else {
|
|
config.apBand = 0;
|
|
mWifiManager.setWifiApConfiguration(config);
|
|
mBandIndex = config.apBand;
|
|
Log.d(TAG, "5Ghz not supported, updating band index to " + mBandIndex);
|
|
}
|
|
ListPreference preference =
|
|
(ListPreference) mPreference;
|
|
preference.setEntries(mBandSummaries);
|
|
preference.setEntryValues(mBandEntries);
|
|
|
|
if (!is5GhzBandSupported()) {
|
|
preference.setEnabled(false);
|
|
preference.setSummary(R.string.wifi_ap_choose_2G);
|
|
} else {
|
|
preference.setValue(Integer.toString(config.apBand));
|
|
preference.setSummary(getConfigSummary());
|
|
}
|
|
}
|
|
|
|
String getConfigSummary() {
|
|
if (mBandIndex == WifiConfiguration.AP_BAND_ANY) {
|
|
return mContext.getString(R.string.wifi_ap_prefer_5G);
|
|
}
|
|
return mBandSummaries[mBandIndex];
|
|
}
|
|
|
|
@Override
|
|
public String getPreferenceKey() {
|
|
return PREF_KEY;
|
|
}
|
|
|
|
@Override
|
|
public boolean onPreferenceChange(Preference preference, Object newValue) {
|
|
mBandIndex = validateSelection(Integer.parseInt((String) newValue));
|
|
Log.d(TAG, "Band preference changed, updating band index to " + mBandIndex);
|
|
preference.setSummary(getConfigSummary());
|
|
mListener.onTetherConfigUpdated();
|
|
return true;
|
|
}
|
|
|
|
private int validateSelection(int band) {
|
|
// Reset the band to 2.4 GHz if we get a weird config back to avoid a crash.
|
|
final boolean isDualMode = mWifiManager.isDualModeSupported();
|
|
|
|
// unsupported states:
|
|
// 1: no dual mode means we can't have AP_BAND_ANY - default to 5GHZ
|
|
// 2: no 5 GHZ support means we can't have AP_BAND_5GHZ - default to 2GHZ
|
|
// 3: With Dual mode support we can't have AP_BAND_5GHZ - default to ANY
|
|
if (!isDualMode && WifiConfiguration.AP_BAND_ANY == band) {
|
|
return WifiConfiguration.AP_BAND_5GHZ;
|
|
} else if (!mWifiManager.is5GHzBandSupported() && WifiConfiguration.AP_BAND_5GHZ == band) {
|
|
return WifiConfiguration.AP_BAND_2GHZ;
|
|
} else if (isDualMode && WifiConfiguration.AP_BAND_5GHZ == band) {
|
|
return WifiConfiguration.AP_BAND_ANY;
|
|
}
|
|
|
|
return band;
|
|
}
|
|
|
|
@VisibleForTesting
|
|
void updatePreferenceEntries() {
|
|
Resources res = mContext.getResources();
|
|
int entriesRes = R.array.wifi_ap_band_config_full;
|
|
int summariesRes = R.array.wifi_ap_band_summary_full;
|
|
// change the list options if this is a dual mode device
|
|
if (isDualMode) {
|
|
entriesRes = R.array.wifi_ap_band_dual_mode;
|
|
summariesRes = R.array.wifi_ap_band_dual_mode_summary;
|
|
}
|
|
mBandEntries = res.getStringArray(entriesRes);
|
|
mBandSummaries = res.getStringArray(summariesRes);
|
|
}
|
|
|
|
private boolean is5GhzBandSupported() {
|
|
final String countryCode = mWifiManager.getCountryCode();
|
|
if (!mWifiManager.isDualBandSupported() || countryCode == null) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public int getBandIndex() {
|
|
return mBandIndex;
|
|
}
|
|
}
|