Merge "[Settings] fix for Wifi calling settings page crash" into sc-dev am: a415ecb608
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/15125472 Change-Id: I9ed2d99f853eb1bfe5382b3addc50bc5d56354f7
This commit is contained in:
@@ -36,6 +36,7 @@ import androidx.annotation.VisibleForTesting;
|
|||||||
import androidx.fragment.app.Fragment;
|
import androidx.fragment.app.Fragment;
|
||||||
import androidx.fragment.app.FragmentManager;
|
import androidx.fragment.app.FragmentManager;
|
||||||
import androidx.fragment.app.FragmentTransaction;
|
import androidx.fragment.app.FragmentTransaction;
|
||||||
|
import androidx.lifecycle.Lifecycle;
|
||||||
|
|
||||||
import com.android.internal.util.CollectionUtils;
|
import com.android.internal.util.CollectionUtils;
|
||||||
import com.android.settings.R;
|
import com.android.settings.R;
|
||||||
@@ -68,6 +69,7 @@ public class MobileNetworkActivity extends SettingsBaseActivity
|
|||||||
// Set initial value to true allows subscription information fragment to be re-created when
|
// Set initial value to true allows subscription information fragment to be re-created when
|
||||||
// Activity re-create occur.
|
// Activity re-create occur.
|
||||||
private boolean mFragmentForceReload = true;
|
private boolean mFragmentForceReload = true;
|
||||||
|
private boolean mPendingSubscriptionChange = false;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onNewIntent(Intent intent) {
|
protected void onNewIntent(Intent intent) {
|
||||||
@@ -155,6 +157,10 @@ public class MobileNetworkActivity extends SettingsBaseActivity
|
|||||||
* Implementation of ProxySubscriptionManager.OnActiveSubscriptionChangedListener
|
* Implementation of ProxySubscriptionManager.OnActiveSubscriptionChangedListener
|
||||||
*/
|
*/
|
||||||
public void onChanged() {
|
public void onChanged() {
|
||||||
|
if (!getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED)) {
|
||||||
|
mPendingSubscriptionChange = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
SubscriptionInfo info = getSubscription();
|
SubscriptionInfo info = getSubscription();
|
||||||
int oldSubIndex = mCurSubscriptionId;
|
int oldSubIndex = mCurSubscriptionId;
|
||||||
updateSubscriptions(info, null);
|
updateSubscriptions(info, null);
|
||||||
@@ -180,6 +186,10 @@ public class MobileNetworkActivity extends SettingsBaseActivity
|
|||||||
super.onStart();
|
super.onStart();
|
||||||
// updateSubscriptions doesn't need to be called, onChanged will always be called after we
|
// updateSubscriptions doesn't need to be called, onChanged will always be called after we
|
||||||
// register a listener.
|
// register a listener.
|
||||||
|
if (mPendingSubscriptionChange) {
|
||||||
|
mPendingSubscriptionChange = false;
|
||||||
|
onChanged();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -17,6 +17,7 @@
|
|||||||
package com.android.settings.wifi.calling;
|
package com.android.settings.wifi.calling;
|
||||||
|
|
||||||
import android.app.settings.SettingsEnums;
|
import android.app.settings.SettingsEnums;
|
||||||
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
@@ -29,12 +30,14 @@ import android.view.ViewGroup;
|
|||||||
|
|
||||||
import androidx.annotation.VisibleForTesting;
|
import androidx.annotation.VisibleForTesting;
|
||||||
import androidx.fragment.app.Fragment;
|
import androidx.fragment.app.Fragment;
|
||||||
|
import androidx.fragment.app.FragmentActivity;
|
||||||
import androidx.fragment.app.FragmentManager;
|
import androidx.fragment.app.FragmentManager;
|
||||||
import androidx.fragment.app.FragmentPagerAdapter;
|
import androidx.fragment.app.FragmentPagerAdapter;
|
||||||
|
|
||||||
import com.android.internal.util.CollectionUtils;
|
import com.android.internal.util.CollectionUtils;
|
||||||
import com.android.settings.R;
|
import com.android.settings.R;
|
||||||
import com.android.settings.core.InstrumentedFragment;
|
import com.android.settings.core.InstrumentedFragment;
|
||||||
|
import com.android.settings.network.ActiveSubscriptionsListener;
|
||||||
import com.android.settings.network.SubscriptionUtil;
|
import com.android.settings.network.SubscriptionUtil;
|
||||||
import com.android.settings.network.ims.WifiCallingQueryImsState;
|
import com.android.settings.network.ims.WifiCallingQueryImsState;
|
||||||
import com.android.settings.search.actionbar.SearchMenuController;
|
import com.android.settings.search.actionbar.SearchMenuController;
|
||||||
@@ -42,6 +45,9 @@ import com.android.settings.support.actionbar.HelpResourceProvider;
|
|||||||
import com.android.settings.widget.RtlCompatibleViewPager;
|
import com.android.settings.widget.RtlCompatibleViewPager;
|
||||||
import com.android.settings.widget.SlidingTabLayout;
|
import com.android.settings.widget.SlidingTabLayout;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -50,7 +56,10 @@ import java.util.List;
|
|||||||
*/
|
*/
|
||||||
public class WifiCallingSettings extends InstrumentedFragment implements HelpResourceProvider {
|
public class WifiCallingSettings extends InstrumentedFragment implements HelpResourceProvider {
|
||||||
private static final String TAG = "WifiCallingSettings";
|
private static final String TAG = "WifiCallingSettings";
|
||||||
|
private int mConstructionSubId;
|
||||||
private List<SubscriptionInfo> mSil;
|
private List<SubscriptionInfo> mSil;
|
||||||
|
private ActiveSubscriptionsListener mSubscriptionChangeListener;
|
||||||
|
private static final int [] EMPTY_SUB_ID_LIST = new int[0];
|
||||||
|
|
||||||
//UI objects
|
//UI objects
|
||||||
private RtlCompatibleViewPager mViewPager;
|
private RtlCompatibleViewPager mViewPager;
|
||||||
@@ -95,16 +104,26 @@ public class WifiCallingSettings extends InstrumentedFragment implements HelpRes
|
|||||||
return view;
|
return view;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private int getConstructionSubId(Bundle bundle) {
|
||||||
|
int subId = SubscriptionManager.INVALID_SUBSCRIPTION_ID;
|
||||||
|
|
||||||
|
Intent intent = getActivity().getIntent();
|
||||||
|
if (intent != null) {
|
||||||
|
subId = intent.getIntExtra(Settings.EXTRA_SUB_ID,
|
||||||
|
SubscriptionManager.INVALID_SUBSCRIPTION_ID);
|
||||||
|
}
|
||||||
|
if ((subId == SubscriptionManager.INVALID_SUBSCRIPTION_ID) && (bundle != null)) {
|
||||||
|
subId = bundle.getInt(Settings.EXTRA_SUB_ID,
|
||||||
|
SubscriptionManager.INVALID_SUBSCRIPTION_ID);
|
||||||
|
}
|
||||||
|
return subId;
|
||||||
|
}
|
||||||
|
|
||||||
private void maybeSetViewForSubId() {
|
private void maybeSetViewForSubId() {
|
||||||
if (mSil == null) {
|
if (mSil == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
final Intent intent = getActivity().getIntent();
|
int subId = mConstructionSubId;
|
||||||
if (intent == null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
final int subId = intent.getIntExtra(Settings.EXTRA_SUB_ID,
|
|
||||||
SubscriptionManager.INVALID_SUBSCRIPTION_ID);
|
|
||||||
if (SubscriptionManager.isValidSubscriptionId(subId)) {
|
if (SubscriptionManager.isValidSubscriptionId(subId)) {
|
||||||
for (SubscriptionInfo subInfo : mSil) {
|
for (SubscriptionInfo subInfo : mSil) {
|
||||||
if (subId == subInfo.getSubscriptionId()) {
|
if (subId == subInfo.getSubscriptionId()) {
|
||||||
@@ -117,11 +136,15 @@ public class WifiCallingSettings extends InstrumentedFragment implements HelpRes
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle icicle) {
|
public void onCreate(Bundle icicle) {
|
||||||
|
mConstructionSubId = getConstructionSubId(icicle);
|
||||||
super.onCreate(icicle);
|
super.onCreate(icicle);
|
||||||
|
Log.d(TAG, "SubId=" + mConstructionSubId);
|
||||||
|
|
||||||
// TODO: besides in onCreate, we should also update subList when SIM / Sub status
|
if (mConstructionSubId != SubscriptionManager.INVALID_SUBSCRIPTION_ID) {
|
||||||
// changes.
|
// Only config Wfc if it's enabled by platform.
|
||||||
updateSubList();
|
mSubscriptionChangeListener = getSubscriptionChangeListener(getContext());
|
||||||
|
}
|
||||||
|
mSil = updateSubList();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -135,6 +158,26 @@ public class WifiCallingSettings extends InstrumentedFragment implements HelpRes
|
|||||||
}
|
}
|
||||||
|
|
||||||
updateTitleForCurrentSub();
|
updateTitleForCurrentSub();
|
||||||
|
|
||||||
|
if (mSubscriptionChangeListener != null) {
|
||||||
|
mSubscriptionChangeListener.start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onStop() {
|
||||||
|
if (mSubscriptionChangeListener != null) {
|
||||||
|
mSubscriptionChangeListener.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
super.onStop();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSaveInstanceState(Bundle outState) {
|
||||||
|
super.onSaveInstanceState(outState);
|
||||||
|
// keep subscription ID for recreation
|
||||||
|
outState.putInt(Settings.EXTRA_SUB_ID, mConstructionSubId);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -160,11 +203,11 @@ public class WifiCallingSettings extends InstrumentedFragment implements HelpRes
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Fragment getItem(int position) {
|
public Fragment getItem(int position) {
|
||||||
Log.d(TAG, "Adapter getItem " + position);
|
int subId = mSil.get(position).getSubscriptionId();
|
||||||
|
Log.d(TAG, "Adapter getItem " + position + " for subId=" + subId);
|
||||||
final Bundle args = new Bundle();
|
final Bundle args = new Bundle();
|
||||||
args.putBoolean(SearchMenuController.NEED_SEARCH_ICON_IN_ACTION_BAR, false);
|
args.putBoolean(SearchMenuController.NEED_SEARCH_ICON_IN_ACTION_BAR, false);
|
||||||
args.putInt(WifiCallingSettingsForSub.FRAGMENT_BUNDLE_SUBID,
|
args.putInt(WifiCallingSettingsForSub.FRAGMENT_BUNDLE_SUBID, subId);
|
||||||
mSil.get(position).getSubscriptionId());
|
|
||||||
final WifiCallingSettingsForSub fragment = new WifiCallingSettingsForSub();
|
final WifiCallingSettingsForSub fragment = new WifiCallingSettingsForSub();
|
||||||
fragment.setArguments(args);
|
fragment.setArguments(args);
|
||||||
|
|
||||||
@@ -190,22 +233,27 @@ public class WifiCallingSettings extends InstrumentedFragment implements HelpRes
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateSubList() {
|
@VisibleForTesting
|
||||||
mSil = SubscriptionUtil.getActiveSubscriptions(
|
protected List<SubscriptionInfo> getSelectableSubscriptions(Context context) {
|
||||||
getContext().getSystemService(SubscriptionManager.class));
|
return SubscriptionUtil.getSelectableSubscriptionInfoList(context);
|
||||||
|
}
|
||||||
|
|
||||||
// Only config Wfc if it's enabled by platform.
|
private List<SubscriptionInfo> updateSubList() {
|
||||||
if (mSil == null) {
|
List<SubscriptionInfo> subInfoList = getSelectableSubscriptions(getContext());
|
||||||
return;
|
|
||||||
|
if (subInfoList == null) {
|
||||||
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
for (int i = 0; i < mSil.size(); ) {
|
List<SubscriptionInfo> selectedList = new ArrayList<SubscriptionInfo>();
|
||||||
final SubscriptionInfo info = mSil.get(i);
|
for (SubscriptionInfo subInfo : subInfoList) {
|
||||||
if (!queryImsState(info.getSubscriptionId()).isWifiCallingProvisioned()) {
|
int subId = subInfo.getSubscriptionId();
|
||||||
mSil.remove(i);
|
try {
|
||||||
} else {
|
if (queryImsState(subId).isWifiCallingProvisioned()) {
|
||||||
i++;
|
selectedList.add(subInfo);
|
||||||
}
|
}
|
||||||
|
} catch (Exception exception) {}
|
||||||
}
|
}
|
||||||
|
return selectedList;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateTitleForCurrentSub() {
|
private void updateTitleForCurrentSub() {
|
||||||
@@ -218,7 +266,78 @@ public class WifiCallingSettings extends InstrumentedFragment implements HelpRes
|
|||||||
}
|
}
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
WifiCallingQueryImsState queryImsState(int subId) {
|
protected WifiCallingQueryImsState queryImsState(int subId) {
|
||||||
return new WifiCallingQueryImsState(getContext(), subId);
|
return new WifiCallingQueryImsState(getContext(), subId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@VisibleForTesting
|
||||||
|
protected ActiveSubscriptionsListener getSubscriptionChangeListener(Context context) {
|
||||||
|
return new ActiveSubscriptionsListener(context.getMainLooper(), context) {
|
||||||
|
public void onChanged() {
|
||||||
|
onSubscriptionChange(context);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void onSubscriptionChange(Context context) {
|
||||||
|
if (mSubscriptionChangeListener == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
int [] previousSubIdList = subscriptionIdList(mSil);
|
||||||
|
List<SubscriptionInfo> updateList = updateSubList();
|
||||||
|
int [] currentSubIdList = subscriptionIdList(updateList);
|
||||||
|
|
||||||
|
if (currentSubIdList.length > 0) {
|
||||||
|
// only keep fragment when any provisioned subscription is available
|
||||||
|
if (previousSubIdList.length == 0) {
|
||||||
|
// initial loading of list
|
||||||
|
mSil = updateList;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (previousSubIdList.length == currentSubIdList.length) {
|
||||||
|
// same number of subscriptions
|
||||||
|
if ( (!containsSubId(previousSubIdList, mConstructionSubId))
|
||||||
|
// original request not yet appears in list
|
||||||
|
|| containsSubId(currentSubIdList, mConstructionSubId) )
|
||||||
|
// original request appears in list
|
||||||
|
{
|
||||||
|
mSil = updateList;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Log.d(TAG, "Closed subId=" + mConstructionSubId
|
||||||
|
+ " due to subscription change: " + Arrays.toString(previousSubIdList)
|
||||||
|
+ " -> " + Arrays.toString(currentSubIdList));
|
||||||
|
|
||||||
|
// close this fragment when no provisioned subscriptions available
|
||||||
|
if (mSubscriptionChangeListener != null) {
|
||||||
|
mSubscriptionChangeListener.stop();
|
||||||
|
mSubscriptionChangeListener = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// close this fragment
|
||||||
|
finish();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void finish() {
|
||||||
|
FragmentActivity activity = getActivity();
|
||||||
|
if (activity == null) return;
|
||||||
|
if (getFragmentManager().getBackStackEntryCount() > 0) {
|
||||||
|
getFragmentManager().popBackStack();
|
||||||
|
} else {
|
||||||
|
activity.finish();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int [] subscriptionIdList(List<SubscriptionInfo> subInfoList) {
|
||||||
|
return (subInfoList == null) ? EMPTY_SUB_ID_LIST :
|
||||||
|
subInfoList.stream().mapToInt(subInfo -> (subInfo == null) ?
|
||||||
|
SubscriptionManager.INVALID_SUBSCRIPTION_ID : subInfo.getSubscriptionId())
|
||||||
|
.toArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected boolean containsSubId(int [] subIdArray, int subIdLookUp) {
|
||||||
|
return Arrays.stream(subIdArray).anyMatch(subId -> (subId == subIdLookUp));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user