Clear feature flag settings_wifi_details_saved_screen Bug: b/128369527 Test: make RunSettingsRoboTests -j32 ROBOTEST_FILTER=com.android.settings.wifi Change-Id: Ib8fc9c9eb52bee12d6501a2041c32aa60c80e70e
159 lines
5.5 KiB
Java
159 lines
5.5 KiB
Java
/*
|
|
* Copyright (C) 2019 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.savedaccesspoints;
|
|
|
|
|
|
import android.content.Context;
|
|
import android.net.wifi.WifiManager;
|
|
import android.util.Log;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceGroup;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.core.BasePreferenceController;
|
|
import com.android.settings.utils.PreferenceGroupChildrenCache;
|
|
import com.android.settingslib.core.lifecycle.LifecycleObserver;
|
|
import com.android.settingslib.core.lifecycle.events.OnStart;
|
|
import com.android.settingslib.utils.ThreadUtils;
|
|
import com.android.settingslib.wifi.AccessPoint;
|
|
import com.android.settingslib.wifi.AccessPointPreference;
|
|
import com.android.settingslib.wifi.AccessPointPreference.UserBadgeCache;
|
|
import com.android.settingslib.wifi.WifiSavedConfigUtils;
|
|
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Controller that manages a PreferenceGroup, which contains a list of subscribed access points.
|
|
*/
|
|
// TODO(b/127206629): Code refactor to avoid duplicated coding after removed feature flag.
|
|
public class SubscribedAccessPointsPreferenceController extends BasePreferenceController implements
|
|
LifecycleObserver, OnStart, Preference.OnPreferenceClickListener,
|
|
WifiManager.ActionListener {
|
|
|
|
private static final String TAG = "SubscribedAPPrefCtrl";
|
|
|
|
private final WifiManager mWifiManager;
|
|
private final PreferenceGroupChildrenCache mChildrenCache;
|
|
private final UserBadgeCache mUserBadgeCache;
|
|
private PreferenceGroup mPreferenceGroup;
|
|
private SavedAccessPointsWifiSettings mHost;
|
|
|
|
public SubscribedAccessPointsPreferenceController(Context context,
|
|
String preferenceKey) {
|
|
super(context, preferenceKey);
|
|
mUserBadgeCache = new AccessPointPreference.UserBadgeCache(context.getPackageManager());
|
|
mWifiManager = context.getSystemService(WifiManager.class);
|
|
mChildrenCache = new PreferenceGroupChildrenCache();
|
|
}
|
|
|
|
public SubscribedAccessPointsPreferenceController setHost(SavedAccessPointsWifiSettings host) {
|
|
mHost = host;
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
return AVAILABLE;
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
super.displayPreference(screen);
|
|
mPreferenceGroup = screen.findPreference(getPreferenceKey());
|
|
}
|
|
|
|
@Override
|
|
public void onStart() {
|
|
refreshSubscribedAccessPoints();
|
|
}
|
|
|
|
public void postRefreshSubscribedAccessPoints() {
|
|
ThreadUtils.postOnMainThread(() -> refreshSubscribedAccessPoints());
|
|
}
|
|
|
|
@Override
|
|
public boolean onPreferenceClick(Preference preference) {
|
|
if (mHost != null) {
|
|
mHost.showWifiPage((AccessPointPreference) preference);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void onSuccess() {
|
|
postRefreshSubscribedAccessPoints();
|
|
}
|
|
|
|
@Override
|
|
public void onFailure(int reason) {
|
|
postRefreshSubscribedAccessPoints();
|
|
}
|
|
|
|
@VisibleForTesting
|
|
void refreshSubscribedAccessPoints() {
|
|
if (mPreferenceGroup == null) {
|
|
Log.w(TAG, "PreferenceGroup is null, skipping.");
|
|
return;
|
|
}
|
|
|
|
if (mHost != null && !mHost.isSubscriptionsFeatureEnabled()) {
|
|
mPreferenceGroup.setVisible(false);
|
|
return;
|
|
}
|
|
|
|
final Context prefContext = mPreferenceGroup.getContext();
|
|
|
|
final List<AccessPoint> accessPoints =
|
|
WifiSavedConfigUtils.getAllConfigs(mContext, mWifiManager);
|
|
Collections.sort(accessPoints, SavedNetworkComparator.INSTANCE);
|
|
mChildrenCache.cacheRemoveAllPrefs(mPreferenceGroup);
|
|
|
|
final int accessPointsSize = accessPoints.size();
|
|
for (int i = 0; i < accessPointsSize; ++i) {
|
|
AccessPoint ap = accessPoints.get(i);
|
|
if (!ap.isPasspointConfig()) {
|
|
continue;
|
|
}
|
|
|
|
final String key = ap.getKey();
|
|
AccessPointPreference preference =
|
|
(AccessPointPreference) mChildrenCache.getCachedPreference(key);
|
|
if (preference == null) {
|
|
preference = new AccessPointPreference(ap, prefContext, mUserBadgeCache, true);
|
|
preference.setKey(key);
|
|
preference.setIcon(null);
|
|
preference.setOnPreferenceClickListener(this);
|
|
mPreferenceGroup.addPreference(preference);
|
|
}
|
|
preference.setOrder(i);
|
|
}
|
|
|
|
mChildrenCache.removeCachedPrefs(mPreferenceGroup);
|
|
|
|
if (mPreferenceGroup.getPreferenceCount() < 1) {
|
|
Log.w(TAG, "Subscribed networks activity loaded,"
|
|
+ " but there are no subscribed networks!");
|
|
mPreferenceGroup.setVisible(false);
|
|
} else {
|
|
mPreferenceGroup.setVisible(true);
|
|
}
|
|
}
|
|
}
|