Bug: 217388602
Bug: 218875965
Test: atest EnterpriseResourcesTests
Test: manual
Change-Id: I4775d7741c7819fd811c3fc4eda1636b1e04b398
(cherry picked from commit de78149c16
)
Merged-In: I4775d7741c7819fd811c3fc4eda1636b1e04b398
90 lines
3.7 KiB
Java
90 lines
3.7 KiB
Java
/*
|
|
* Copyright (C) 2018 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.security;
|
|
|
|
import static android.app.admin.DevicePolicyResources.Strings.Settings.WORK_PROFILE_UNIFY_LOCKS_DETAIL;
|
|
import static android.app.admin.DevicePolicyResources.Strings.Settings.WORK_PROFILE_UNIFY_LOCKS_NONCOMPLIANT;
|
|
|
|
import android.app.Dialog;
|
|
import android.app.admin.DevicePolicyManager;
|
|
import android.app.settings.SettingsEnums;
|
|
import android.content.DialogInterface;
|
|
import android.os.Bundle;
|
|
|
|
import androidx.appcompat.app.AlertDialog;
|
|
import androidx.fragment.app.FragmentManager;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.core.instrumentation.InstrumentedDialogFragment;
|
|
|
|
public class UnificationConfirmationDialog extends InstrumentedDialogFragment {
|
|
|
|
static final String TAG_UNIFICATION_DIALOG = "unification_dialog";
|
|
private static final String EXTRA_COMPLIANT = "compliant";
|
|
|
|
public static UnificationConfirmationDialog newInstance(boolean compliant) {
|
|
UnificationConfirmationDialog
|
|
dialog = new UnificationConfirmationDialog();
|
|
Bundle args = new Bundle();
|
|
args.putBoolean(EXTRA_COMPLIANT, compliant);
|
|
dialog.setArguments(args);
|
|
return dialog;
|
|
}
|
|
|
|
public void show(SecuritySettings host) {
|
|
final FragmentManager manager = host.getChildFragmentManager();
|
|
if (manager.findFragmentByTag(TAG_UNIFICATION_DIALOG) == null) {
|
|
// Prevent opening multiple dialogs if tapped on button quickly
|
|
show(manager, TAG_UNIFICATION_DIALOG);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
|
final SecuritySettings parentFragment = ((SecuritySettings) getParentFragment());
|
|
final boolean compliant = getArguments().getBoolean(EXTRA_COMPLIANT);
|
|
|
|
String overrideMessageId = compliant ? WORK_PROFILE_UNIFY_LOCKS_DETAIL
|
|
: WORK_PROFILE_UNIFY_LOCKS_NONCOMPLIANT;
|
|
int defaultMessageId = compliant ? R.string.lock_settings_profile_unification_dialog_body
|
|
: R.string.lock_settings_profile_unification_dialog_uncompliant_body;
|
|
|
|
return new AlertDialog.Builder(getActivity())
|
|
.setTitle(R.string.lock_settings_profile_unification_dialog_title)
|
|
.setMessage(getContext().getSystemService(DevicePolicyManager.class).getResources()
|
|
.getString(overrideMessageId, () -> getString(defaultMessageId)))
|
|
.setPositiveButton(
|
|
compliant ? R.string.lock_settings_profile_unification_dialog_confirm
|
|
: R.string
|
|
.lock_settings_profile_unification_dialog_uncompliant_confirm,
|
|
(dialog, whichButton) -> parentFragment.startUnification())
|
|
.setNegativeButton(R.string.cancel, null)
|
|
.create();
|
|
}
|
|
|
|
@Override
|
|
public void onDismiss(DialogInterface dialog) {
|
|
super.onDismiss(dialog);
|
|
((SecuritySettings) getParentFragment()).updateUnificationPreference();
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return SettingsEnums.DIALOG_UNIFICATION_CONFIRMATION;
|
|
}
|
|
}
|