Bug: 274899027 Test: atest SystemUIMicrobenchmark:android.platform.test.scenario.sysui.quicksettings Change-Id: Ia19b91cfd1073f22180cc9679025447b4d5fecd9
259 lines
9.3 KiB
Java
259 lines
9.3 KiB
Java
/*
|
|
* Copyright (C) 2020 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 androidx.lifecycle.Lifecycle.Event;
|
|
|
|
import android.content.Context;
|
|
import android.os.UserManager;
|
|
import android.telephony.ServiceState;
|
|
import android.telephony.SubscriptionManager;
|
|
import android.telephony.TelephonyManager;
|
|
import android.util.Log;
|
|
import android.view.View;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.lifecycle.LifecycleObserver;
|
|
import androidx.lifecycle.LifecycleOwner;
|
|
import androidx.lifecycle.OnLifecycleEvent;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settingslib.RestrictedPreference;
|
|
import com.android.settingslib.Utils;
|
|
import com.android.settingslib.core.AbstractPreferenceController;
|
|
import com.android.settingslib.core.lifecycle.Lifecycle;
|
|
import com.android.settingslib.mobile.dataservice.SubscriptionInfoEntity;
|
|
|
|
import java.util.List;
|
|
|
|
public class NetworkProviderCallsSmsController extends AbstractPreferenceController implements
|
|
LifecycleObserver, MobileNetworkRepository.MobileNetworkCallback,
|
|
DefaultSubscriptionReceiver.DefaultSubscriptionListener {
|
|
|
|
private static final String TAG = "NetworkProviderCallsSmsController";
|
|
private static final String KEY = "calls_and_sms";
|
|
private static final String RTL_MARK = "\u200F";
|
|
|
|
private UserManager mUserManager;
|
|
private TelephonyManager mTelephonyManager;
|
|
private RestrictedPreference mPreference;
|
|
private boolean mIsRtlMode;
|
|
private LifecycleOwner mLifecycleOwner;
|
|
private MobileNetworkRepository mMobileNetworkRepository;
|
|
private List<SubscriptionInfoEntity> mSubInfoEntityList;
|
|
private int mDefaultVoiceSubId = SubscriptionManager.INVALID_SUBSCRIPTION_ID;
|
|
private int mDefaultSmsSubId = SubscriptionManager.INVALID_SUBSCRIPTION_ID;
|
|
private DefaultSubscriptionReceiver mDataSubscriptionChangedReceiver;
|
|
|
|
/**
|
|
* The summary text and click behavior of the "Calls & SMS" item on the
|
|
* Network & internet page.
|
|
*/
|
|
public NetworkProviderCallsSmsController(Context context, Lifecycle lifecycle,
|
|
LifecycleOwner lifecycleOwner) {
|
|
super(context);
|
|
|
|
mUserManager = context.getSystemService(UserManager.class);
|
|
mTelephonyManager = mContext.getSystemService(TelephonyManager.class);
|
|
mIsRtlMode = context.getResources().getConfiguration().getLayoutDirection()
|
|
== View.LAYOUT_DIRECTION_RTL;
|
|
mLifecycleOwner = lifecycleOwner;
|
|
mMobileNetworkRepository = MobileNetworkRepository.getInstance(context);
|
|
mDataSubscriptionChangedReceiver = new DefaultSubscriptionReceiver(context, this);
|
|
if (lifecycle != null) {
|
|
lifecycle.addObserver(this);
|
|
}
|
|
}
|
|
|
|
@OnLifecycleEvent(Event.ON_RESUME)
|
|
public void onResume() {
|
|
mMobileNetworkRepository.addRegister(mLifecycleOwner, this,
|
|
SubscriptionManager.INVALID_SUBSCRIPTION_ID);
|
|
mMobileNetworkRepository.updateEntity();
|
|
mDataSubscriptionChangedReceiver.registerReceiver();
|
|
mDefaultVoiceSubId = SubscriptionManager.getDefaultVoiceSubscriptionId();
|
|
mDefaultSmsSubId = SubscriptionManager.getDefaultSmsSubscriptionId();
|
|
}
|
|
|
|
@OnLifecycleEvent(Event.ON_PAUSE)
|
|
public void onPause() {
|
|
mMobileNetworkRepository.removeRegister(this);
|
|
mDataSubscriptionChangedReceiver.unRegisterReceiver();
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
super.displayPreference(screen);
|
|
mPreference = screen.findPreference(getPreferenceKey());
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getSummary() {
|
|
List<SubscriptionInfoEntity> list = getSubscriptionInfoList();
|
|
if (list == null || list.isEmpty()) {
|
|
return setSummaryResId(R.string.calls_sms_no_sim);
|
|
} else {
|
|
final StringBuilder summary = new StringBuilder();
|
|
SubscriptionInfoEntity[] entityArray = list.toArray(
|
|
new SubscriptionInfoEntity[0]);
|
|
for (SubscriptionInfoEntity subInfo : entityArray) {
|
|
int subsSize = list.size();
|
|
int subId = Integer.parseInt(subInfo.subId);
|
|
final CharSequence displayName = subInfo.uniqueName;
|
|
|
|
// Set displayName as summary if there is only one valid SIM.
|
|
if (subsSize == 1
|
|
&& list.get(0).isValidSubscription
|
|
&& isInService(subId)) {
|
|
return displayName;
|
|
}
|
|
|
|
CharSequence status = getPreferredStatus(subInfo, subsSize, subId);
|
|
if (status.toString().isEmpty()) {
|
|
// If there are 2 or more SIMs and one of these has no preferred status,
|
|
// set only its displayName as summary.
|
|
summary.append(displayName);
|
|
} else {
|
|
summary.append(displayName)
|
|
.append(" (")
|
|
.append(status)
|
|
.append(")");
|
|
}
|
|
// Do not add ", " for the last subscription.
|
|
if (list.size() > 0 && !subInfo.equals(list.get(list.size() - 1))) {
|
|
summary.append(", ");
|
|
}
|
|
|
|
if (mIsRtlMode) {
|
|
summary.insert(0, RTL_MARK).insert(summary.length(), RTL_MARK);
|
|
}
|
|
}
|
|
return summary;
|
|
}
|
|
}
|
|
|
|
@VisibleForTesting
|
|
protected CharSequence getPreferredStatus(SubscriptionInfoEntity subInfo, int subsSize,
|
|
int subId) {
|
|
String status = "";
|
|
boolean isCallPreferred = subInfo.getSubId() == getDefaultVoiceSubscriptionId();
|
|
boolean isSmsPreferred = subInfo.getSubId() == getDefaultSmsSubscriptionId();
|
|
|
|
if (!subInfo.isValidSubscription || !isInService(subId)) {
|
|
status = setSummaryResId(subsSize > 1 ? R.string.calls_sms_unavailable :
|
|
R.string.calls_sms_temp_unavailable);
|
|
} else {
|
|
if (isCallPreferred && isSmsPreferred) {
|
|
status = setSummaryResId(R.string.calls_sms_preferred);
|
|
} else if (isCallPreferred) {
|
|
status = setSummaryResId(R.string.calls_sms_calls_preferred);
|
|
} else if (isSmsPreferred) {
|
|
status = setSummaryResId(R.string.calls_sms_sms_preferred);
|
|
}
|
|
}
|
|
return status;
|
|
}
|
|
|
|
private String setSummaryResId(int resId) {
|
|
return mContext.getResources().getString(resId);
|
|
}
|
|
|
|
@VisibleForTesting
|
|
protected List<SubscriptionInfoEntity> getSubscriptionInfoList() {
|
|
return mSubInfoEntityList;
|
|
}
|
|
|
|
private void update() {
|
|
if (mPreference == null || mPreference.isDisabledByAdmin()) {
|
|
return;
|
|
}
|
|
refreshSummary(mPreference);
|
|
mPreference.setOnPreferenceClickListener(null);
|
|
mPreference.setFragment(null);
|
|
|
|
if (mSubInfoEntityList == null || mSubInfoEntityList.isEmpty()) {
|
|
mPreference.setEnabled(false);
|
|
} else {
|
|
mPreference.setEnabled(true);
|
|
mPreference.setFragment(NetworkProviderCallsSmsFragment.class.getCanonicalName());
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean isAvailable() {
|
|
return SubscriptionUtil.isSimHardwareVisible(mContext) &&
|
|
mUserManager.isAdminUser();
|
|
}
|
|
|
|
@Override
|
|
public String getPreferenceKey() {
|
|
return KEY;
|
|
}
|
|
|
|
@Override
|
|
public void onAirplaneModeChanged(boolean airplaneModeEnabled) {
|
|
update();
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
super.updateState(preference);
|
|
if (preference == null) {
|
|
return;
|
|
}
|
|
refreshSummary(mPreference);
|
|
update();
|
|
}
|
|
|
|
@VisibleForTesting
|
|
protected boolean isInService(int subId) {
|
|
ServiceState serviceState =
|
|
mTelephonyManager.createForSubscriptionId(subId).getServiceState();
|
|
return Utils.isInService(serviceState);
|
|
}
|
|
|
|
@Override
|
|
public void onActiveSubInfoChanged(List<SubscriptionInfoEntity> activeSubInfoList) {
|
|
mSubInfoEntityList = activeSubInfoList;
|
|
update();
|
|
}
|
|
|
|
@VisibleForTesting
|
|
protected int getDefaultVoiceSubscriptionId() {
|
|
return mDefaultVoiceSubId;
|
|
}
|
|
|
|
@VisibleForTesting
|
|
protected int getDefaultSmsSubscriptionId() {
|
|
return mDefaultSmsSubId;
|
|
}
|
|
|
|
@Override
|
|
public void onDefaultVoiceChanged(int defaultVoiceSubId) {
|
|
mDefaultVoiceSubId = defaultVoiceSubId;
|
|
update();
|
|
}
|
|
|
|
@Override
|
|
public void onDefaultSmsChanged(int defaultSmsSubId) {
|
|
mDefaultSmsSubId = defaultSmsSubId;
|
|
update();
|
|
}
|
|
}
|