- Move data logic into repository for better testing - Check carrier config first, if not shows some items, we don't need to load data - Tests in SimStatusDialogControllerTest will be fixed in later cls Bug: 337417520 Test: manual - on SIM status Test: unit test Change-Id: Ia0c32882f0b35ec9154b3da58ac6a7b98c879efc
134 lines
4.7 KiB
Java
134 lines
4.7 KiB
Java
/*
|
|
* Copyright (C) 2017 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.deviceinfo.simstatus;
|
|
|
|
import android.app.Dialog;
|
|
import android.app.settings.SettingsEnums;
|
|
import android.os.Bundle;
|
|
import android.text.TextUtils;
|
|
import android.util.Log;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.WindowManager;
|
|
import android.widget.TextView;
|
|
|
|
import androidx.appcompat.app.AlertDialog;
|
|
import androidx.fragment.app.Fragment;
|
|
import androidx.fragment.app.FragmentManager;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.core.instrumentation.InstrumentedDialogFragment;
|
|
import com.android.settings.deviceinfo.PhoneNumberUtil;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.stream.IntStream;
|
|
|
|
public class SimStatusDialogFragment extends InstrumentedDialogFragment {
|
|
|
|
private static final String SIM_SLOT_BUNDLE_KEY = "arg_key_sim_slot";
|
|
private static final String DIALOG_TITLE_BUNDLE_KEY = "arg_key_dialog_title";
|
|
|
|
private static final String TAG = "SimStatusDialog";
|
|
|
|
private View mRootView;
|
|
private SimStatusDialogController mController;
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return SettingsEnums.DIALOG_SIM_STATUS;
|
|
}
|
|
|
|
public static void show(Fragment host, int slotId, String dialogTitle) {
|
|
final FragmentManager manager = host.getChildFragmentManager();
|
|
if (manager.findFragmentByTag(TAG) == null) {
|
|
final Bundle bundle = new Bundle();
|
|
bundle.putInt(SIM_SLOT_BUNDLE_KEY, slotId);
|
|
bundle.putString(DIALOG_TITLE_BUNDLE_KEY, dialogTitle);
|
|
final SimStatusDialogFragment dialog =
|
|
new SimStatusDialogFragment();
|
|
dialog.setArguments(bundle);
|
|
dialog.show(manager, TAG);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
|
final Bundle bundle = getArguments();
|
|
final int slotId = bundle.getInt(SIM_SLOT_BUNDLE_KEY);
|
|
final String dialogTitle = bundle.getString(DIALOG_TITLE_BUNDLE_KEY);
|
|
mController = new SimStatusDialogController(this, mLifecycle, slotId);
|
|
final AlertDialog.Builder builder = new AlertDialog.Builder(getActivity())
|
|
.setTitle(dialogTitle)
|
|
.setPositiveButton(android.R.string.ok, null /* onClickListener */);
|
|
mRootView = LayoutInflater.from(builder.getContext())
|
|
.inflate(R.layout.dialog_sim_status, null /* parent */);
|
|
mController.initialize();
|
|
|
|
Dialog dlg = builder.setView(mRootView).create();
|
|
dlg.getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE,
|
|
WindowManager.LayoutParams.FLAG_SECURE);
|
|
|
|
return dlg;
|
|
}
|
|
|
|
@Override
|
|
public void onDestroy() {
|
|
mController.deinitialize();
|
|
super.onDestroy();
|
|
}
|
|
|
|
public void setSettingVisibility(int viewId, boolean isVisible) {
|
|
final View view = mRootView.findViewById(viewId);
|
|
if (view != null) {
|
|
view.setVisibility(isVisible ? View.VISIBLE : View.GONE);
|
|
}
|
|
}
|
|
|
|
public void removeSettingFromScreen(int viewId) {
|
|
final View view = mRootView.findViewById(viewId);
|
|
if (view != null) {
|
|
view.setVisibility(View.GONE);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* View ID(s) which is digit format (instead of decimal number) text.
|
|
**/
|
|
private static final int[] sViewIdsInDigitFormat = IntStream
|
|
.of(SimStatusDialogController.ICCID_INFO_VALUE_ID,
|
|
SimStatusDialogController.PHONE_NUMBER_VALUE_ID)
|
|
.sorted().toArray();
|
|
|
|
public void setText(int viewId, CharSequence text) {
|
|
if (!isAdded()) {
|
|
Log.d(TAG, "Fragment not attached yet.");
|
|
return;
|
|
}
|
|
|
|
final TextView textView = mRootView.findViewById(viewId);
|
|
if (textView == null) {
|
|
return;
|
|
}
|
|
if (TextUtils.isEmpty(text)) {
|
|
text = getResources().getString(R.string.device_info_default);
|
|
} else if (Arrays.binarySearch(sViewIdsInDigitFormat, viewId) >= 0) {
|
|
text = PhoneNumberUtil.expandByTts(text);
|
|
}
|
|
textView.setText(text);
|
|
}
|
|
}
|