Bug: 374994012 Test: atest SubscriptionInfoListViewModelTest Test: manual test in live network FLAG: EXEMPT flag clean up Change-Id: Ib9f9f692658df13aad45f2e889a48f2bffed9ed4
161 lines
5.6 KiB
Java
161 lines
5.6 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.sim;
|
|
|
|
import static android.telephony.SubscriptionManager.PROFILE_CLASS_PROVISIONING;
|
|
|
|
import android.app.Activity;
|
|
import android.app.Dialog;
|
|
import android.app.settings.SettingsEnums;
|
|
import android.content.Context;
|
|
import android.content.DialogInterface;
|
|
import android.os.Bundle;
|
|
import android.telephony.SubscriptionInfo;
|
|
import android.telephony.SubscriptionManager;
|
|
import android.telephony.TelephonyManager;
|
|
import android.util.Log;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.appcompat.app.AlertDialog;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.network.SubscriptionUtil;
|
|
|
|
/**
|
|
* After androidV, presents a dialog asking the user if they want to update the mobile data.
|
|
* Typically this would be used in a case where a device goes from having multiple SIMs down to
|
|
* only one.
|
|
*/
|
|
public class PreferredSimDialogFragment extends SimDialogFragment implements
|
|
DialogInterface.OnClickListener {
|
|
private static final String TAG = "PreferredSimDialogFrag";
|
|
|
|
public static PreferredSimDialogFragment newInstance() {
|
|
final PreferredSimDialogFragment fragment = new PreferredSimDialogFragment();
|
|
final Bundle args = initArguments(SimDialogActivity.PREFERRED_PICK,
|
|
R.string.select_specific_sim_for_data_title);
|
|
fragment.setArguments(args);
|
|
return fragment;
|
|
}
|
|
|
|
@NonNull
|
|
@Override
|
|
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
|
|
final AlertDialog dialog = new AlertDialog.Builder(getContext())
|
|
.setPositiveButton(R.string.yes, this)
|
|
.setNegativeButton(R.string.no, null)
|
|
.create();
|
|
updateDialog(dialog);
|
|
return dialog;
|
|
}
|
|
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int buttonClicked) {
|
|
if (buttonClicked != DialogInterface.BUTTON_POSITIVE) {
|
|
return;
|
|
}
|
|
final SimDialogActivity activity = (SimDialogActivity) getActivity();
|
|
final SubscriptionInfo info = getPreferredSubscription();
|
|
if (info != null) {
|
|
activity.onSubscriptionSelected(getDialogType(), info.getSubscriptionId());
|
|
}
|
|
}
|
|
|
|
public SubscriptionInfo getPreferredSubscription() {
|
|
final Activity activity = getActivity();
|
|
final int slotId = activity.getIntent().getIntExtra(SimDialogActivity.PREFERRED_SIM,
|
|
SubscriptionManager.INVALID_SUBSCRIPTION_ID);
|
|
return getSubscriptionManager().getActiveSubscriptionInfoForSimSlotIndex(slotId);
|
|
}
|
|
|
|
private void updateDialog(AlertDialog dialog) {
|
|
Log.d(TAG, "Dialog updated, dismiss status: " + mWasDismissed);
|
|
|
|
if (mWasDismissed) {
|
|
return;
|
|
}
|
|
|
|
if (dialog == null) {
|
|
dismiss("Dialog is null.");
|
|
return;
|
|
}
|
|
Context context = getContext();
|
|
if (context == null) {
|
|
dismiss("getContext is null.");
|
|
return;
|
|
}
|
|
|
|
final SubscriptionInfo info = getPreferredSubscription();
|
|
if (info == null || (info.isEmbedded()
|
|
&& (info.getProfileClass() == PROFILE_CLASS_PROVISIONING
|
|
|| info.isOnlyNonTerrestrialNetwork()))) {
|
|
dismiss("SubscriptionInfo is null or other esim's cases.");
|
|
return;
|
|
}
|
|
Log.d(TAG, "SubscriptionInfo: " + info);
|
|
TelephonyManager telephonyManager = context.getSystemService(TelephonyManager.class);
|
|
if (telephonyManager == null) {
|
|
dismiss("TelephonyManager is null.");
|
|
return;
|
|
}
|
|
telephonyManager = telephonyManager.createForSubscriptionId(info.getSubscriptionId());
|
|
if (telephonyManager.isDataEnabledForReason(TelephonyManager.DATA_ENABLED_REASON_USER)) {
|
|
dismiss("mobile data is on.");
|
|
final SimDialogActivity activity = (SimDialogActivity) getActivity();
|
|
if (activity != null) {
|
|
activity.finish();
|
|
}
|
|
return;
|
|
}
|
|
|
|
final CharSequence simName =
|
|
SubscriptionUtil.getUniqueSubscriptionDisplayName(info, context);
|
|
final String title =
|
|
context.getString(
|
|
getTitleResId(),
|
|
simName);
|
|
final String message =
|
|
context.getString(
|
|
R.string.sim_preferred_message,
|
|
simName);
|
|
dialog.setTitle(title);
|
|
dialog.setMessage(message);
|
|
}
|
|
|
|
private void dismiss(String log) {
|
|
Log.d(TAG, log);
|
|
dismiss();
|
|
}
|
|
|
|
@Override
|
|
public void updateDialog() {
|
|
updateDialog((AlertDialog) getDialog());
|
|
}
|
|
|
|
@VisibleForTesting
|
|
protected SubscriptionManager getSubscriptionManager() {
|
|
return getContext().getSystemService(SubscriptionManager.class);
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return SettingsEnums.DIALOG_PREFERRED_SIM_PICKER;
|
|
}
|
|
}
|