blob: 6033e8c7a0738dbd26d3e29e7ce57dbab74dda2b [file] [log] [blame]
/*
* 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.car.settings.development;
import android.app.AlertDialog;
import android.app.Dialog;
import android.os.Bundle;
import androidx.fragment.app.DialogFragment;
import com.android.car.settings.R;
/** A dialog which confirms that the user wants to enable developer settings. */
public class EnableDeveloperSettingsWarningDialog extends DialogFragment {
/**
* Tag used to open and identify the dialog fragment from the FragmentManager or
* FragmentController.
*/
public static final String TAG = "EnableDeveloperSettingsWarningDialog";
private DeveloperSettingsToggleListener mListener;
/**
* Sets a listener which determines the action for the positive and negative actions on this
* dialog.
*/
public void setEnableDeveloperSettingsWarningListener(
DeveloperSettingsToggleListener listener) {
mListener = listener;
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
return new AlertDialog.Builder(getActivity())
.setTitle(R.string.dev_settings_warning_title)
.setMessage(R.string.dev_settings_warning_message)
.setPositiveButton(android.R.string.yes,
(dialog, which) -> mListener.onEnableDeveloperSettingsConfirmed())
.setNegativeButton(android.R.string.no,
(dialog, which) -> mListener.onEnableDeveloperSettingsRejected())
.create();
}
/**
* Interface for listeners that want a callback when a user selects the positive or negative
* button on this dialog.
*/
public interface DeveloperSettingsToggleListener {
/** Action to take on positive button selected. */
void onEnableDeveloperSettingsConfirmed();
/** Action to take on negative button selected. */
void onEnableDeveloperSettingsRejected();
}
}