- remove the component name when launching the intent, using the action intent to replace. - remove MobileNetworkActivity and rename SubscriptionSettingsActivity as MobileNetworkActivity. Bug: 210593601 Test: atest Change-Id: Icb7adaf9f7c7dfe01ff5c133aee8387c1663546c
163 lines
5.7 KiB
Java
163 lines
5.7 KiB
Java
/*
|
|
* Copyright (C) 2016 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.network;
|
|
|
|
import static android.os.UserHandle.myUserId;
|
|
import static android.os.UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS;
|
|
|
|
import static com.android.settings.Utils.SETTINGS_PACKAGE_NAME;
|
|
|
|
import static androidx.lifecycle.Lifecycle.Event;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.IntentFilter;
|
|
import android.os.UserManager;
|
|
import android.provider.Settings;
|
|
import android.telephony.PhoneStateListener;
|
|
import android.telephony.ServiceState;
|
|
import android.telephony.TelephonyCallback;
|
|
import android.telephony.TelephonyManager;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.lifecycle.LifecycleObserver;
|
|
import androidx.lifecycle.OnLifecycleEvent;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.core.PreferenceControllerMixin;
|
|
import com.android.settings.network.telephony.MobileNetworkUtils;
|
|
import com.android.settingslib.RestrictedLockUtilsInternal;
|
|
import com.android.settingslib.RestrictedPreference;
|
|
import com.android.settingslib.Utils;
|
|
import com.android.settingslib.core.AbstractPreferenceController;
|
|
|
|
public class MobileNetworkPreferenceController extends AbstractPreferenceController
|
|
implements PreferenceControllerMixin, LifecycleObserver {
|
|
|
|
@VisibleForTesting
|
|
static final String KEY_MOBILE_NETWORK_SETTINGS = "mobile_network_settings";
|
|
|
|
private final boolean mIsSecondaryUser;
|
|
private final TelephonyManager mTelephonyManager;
|
|
private final UserManager mUserManager;
|
|
private Preference mPreference;
|
|
@VisibleForTesting
|
|
MobileNetworkTelephonyCallback mTelephonyCallback;
|
|
|
|
private BroadcastReceiver mAirplanModeChangedReceiver;
|
|
|
|
public MobileNetworkPreferenceController(Context context) {
|
|
super(context);
|
|
mUserManager = (UserManager) context.getSystemService(Context.USER_SERVICE);
|
|
mTelephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
|
|
mIsSecondaryUser = !mUserManager.isAdminUser();
|
|
|
|
mAirplanModeChangedReceiver = new BroadcastReceiver() {
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
updateState(mPreference);
|
|
}
|
|
};
|
|
}
|
|
|
|
@Override
|
|
public boolean isAvailable() {
|
|
return !isUserRestricted() && !Utils.isWifiOnly(mContext);
|
|
}
|
|
|
|
public boolean isUserRestricted() {
|
|
return mIsSecondaryUser ||
|
|
RestrictedLockUtilsInternal.hasBaseUserRestriction(
|
|
mContext,
|
|
DISALLOW_CONFIG_MOBILE_NETWORKS,
|
|
myUserId());
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
super.displayPreference(screen);
|
|
mPreference = screen.findPreference(getPreferenceKey());
|
|
}
|
|
|
|
@Override
|
|
public String getPreferenceKey() {
|
|
return KEY_MOBILE_NETWORK_SETTINGS;
|
|
}
|
|
|
|
class MobileNetworkTelephonyCallback extends TelephonyCallback implements
|
|
TelephonyCallback.ServiceStateListener {
|
|
@Override
|
|
public void onServiceStateChanged(ServiceState serviceState) {
|
|
updateState(mPreference);
|
|
}
|
|
}
|
|
|
|
@OnLifecycleEvent(Event.ON_START)
|
|
public void onStart() {
|
|
if (isAvailable()) {
|
|
if (mTelephonyCallback == null) {
|
|
mTelephonyCallback = new MobileNetworkTelephonyCallback();
|
|
}
|
|
mTelephonyManager.registerTelephonyCallback(
|
|
mContext.getMainExecutor(), mTelephonyCallback);
|
|
}
|
|
if (mAirplanModeChangedReceiver != null) {
|
|
mContext.registerReceiver(mAirplanModeChangedReceiver,
|
|
new IntentFilter(Intent.ACTION_AIRPLANE_MODE_CHANGED));
|
|
}
|
|
}
|
|
|
|
@OnLifecycleEvent(Event.ON_STOP)
|
|
public void onStop() {
|
|
if (mTelephonyCallback != null) {
|
|
mTelephonyManager.unregisterTelephonyCallback(mTelephonyCallback);
|
|
}
|
|
if (mAirplanModeChangedReceiver != null) {
|
|
mContext.unregisterReceiver(mAirplanModeChangedReceiver);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
super.updateState(preference);
|
|
|
|
if (preference instanceof RestrictedPreference &&
|
|
((RestrictedPreference) preference).isDisabledByAdmin()) {
|
|
return;
|
|
}
|
|
preference.setEnabled(Settings.Global.getInt(
|
|
mContext.getContentResolver(), Settings.Global.AIRPLANE_MODE_ON, 0) == 0);
|
|
}
|
|
|
|
@Override
|
|
public boolean handlePreferenceTreeClick(Preference preference) {
|
|
if (KEY_MOBILE_NETWORK_SETTINGS.equals(preference.getKey())) {
|
|
final Intent intent = new Intent(Settings.ACTION_NETWORK_OPERATOR_SETTINGS);
|
|
intent.setPackage(SETTINGS_PACKAGE_NAME);
|
|
mContext.startActivity(intent);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getSummary() {
|
|
return MobileNetworkUtils.getCurrentCarrierNameForDisplay(mContext);
|
|
}
|
|
}
|