125 lines
4.9 KiB
Java
125 lines
4.9 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.applications.defaultapps;
|
|
|
|
import android.app.Activity;
|
|
import android.app.AlertDialog;
|
|
import android.app.Dialog;
|
|
import android.app.DialogFragment;
|
|
import android.app.Fragment;
|
|
import android.content.Context;
|
|
import android.content.DialogInterface;
|
|
import android.os.Bundle;
|
|
import android.text.TextUtils;
|
|
|
|
import com.android.internal.logging.nano.MetricsProto;
|
|
import com.android.settings.R;
|
|
import com.android.settings.applications.PackageManagerWrapper;
|
|
import com.android.settings.applications.PackageManagerWrapperImpl;
|
|
import com.android.settings.core.instrumentation.InstrumentedDialogFragment;
|
|
import com.android.settings.widget.RadioButtonPickerFragment;
|
|
import com.android.settings.widget.RadioButtonPreference;
|
|
|
|
/**
|
|
* A generic app picker fragment that shows a list of app as radio button group.
|
|
*/
|
|
public abstract class DefaultAppPickerFragment extends RadioButtonPickerFragment {
|
|
|
|
protected PackageManagerWrapper mPm;
|
|
|
|
@Override
|
|
public void onAttach(Context context) {
|
|
super.onAttach(context);
|
|
mPm = new PackageManagerWrapperImpl(context.getPackageManager());
|
|
}
|
|
|
|
@Override
|
|
public void onRadioButtonClicked(RadioButtonPreference selected) {
|
|
final String selectedKey = selected.getKey();
|
|
final CharSequence confirmationMessage = getConfirmationMessage(getCandidate(selectedKey));
|
|
final Activity activity = getActivity();
|
|
if (TextUtils.isEmpty(confirmationMessage)) {
|
|
super.onRadioButtonClicked(selected);
|
|
} else if (activity != null) {
|
|
final DialogFragment fragment = ConfirmationDialogFragment.newInstance(
|
|
this, selectedKey, confirmationMessage);
|
|
fragment.show(activity.getFragmentManager(), ConfirmationDialogFragment.TAG);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void bindPreferenceExtra(RadioButtonPreference pref,
|
|
String key, CandidateInfo info, String defaultKey, String systemDefaultKey) {
|
|
if (!(info instanceof DefaultAppInfo)) {
|
|
return;
|
|
}
|
|
if (TextUtils.equals(systemDefaultKey, key)) {
|
|
pref.setSummary(R.string.system_app);
|
|
} else if (!TextUtils.isEmpty(((DefaultAppInfo) info).summary)) {
|
|
pref.setSummary(((DefaultAppInfo) info).summary);
|
|
}
|
|
}
|
|
|
|
protected CharSequence getConfirmationMessage(CandidateInfo info) {
|
|
return null;
|
|
}
|
|
|
|
public static class ConfirmationDialogFragment extends InstrumentedDialogFragment
|
|
implements DialogInterface.OnClickListener {
|
|
|
|
public static final String TAG = "DefaultAppConfirm";
|
|
public static final String EXTRA_KEY = "extra_key";
|
|
public static final String EXTRA_MESSAGE = "extra_message";
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return MetricsProto.MetricsEvent.DEFAULT_APP_PICKER_CONFIRMATION_DIALOG;
|
|
}
|
|
|
|
public static ConfirmationDialogFragment newInstance(DefaultAppPickerFragment parent,
|
|
String key, CharSequence message) {
|
|
final ConfirmationDialogFragment fragment = new ConfirmationDialogFragment();
|
|
final Bundle argument = new Bundle();
|
|
argument.putString(EXTRA_KEY, key);
|
|
argument.putCharSequence(EXTRA_MESSAGE, message);
|
|
fragment.setArguments(argument);
|
|
fragment.setTargetFragment(parent, 0);
|
|
return fragment;
|
|
}
|
|
|
|
@Override
|
|
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
|
final Bundle bundle = getArguments();
|
|
final AlertDialog.Builder builder = new AlertDialog.Builder(getActivity())
|
|
.setMessage(bundle.getCharSequence(EXTRA_MESSAGE))
|
|
.setPositiveButton(android.R.string.ok, this)
|
|
.setNegativeButton(android.R.string.cancel, null);
|
|
return builder.create();
|
|
}
|
|
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
final Fragment fragment = getTargetFragment();
|
|
if (fragment instanceof DefaultAppPickerFragment) {
|
|
final Bundle bundle = getArguments();
|
|
((DefaultAppPickerFragment) fragment).onRadioButtonConfirmed(
|
|
bundle.getString(EXTRA_KEY));
|
|
}
|
|
}
|
|
}
|
|
}
|