'bugreportplus' is more user-friendly (it shows a system notification with the progress, allow user to cancel, etc...), at the cost of consuming more resources. As such, the "Take Bug Report" UI will be changed to offer the user a combo with these 2 options, but for now it's always going to be 'bugreportplus' BUG: 26034608 Change-Id: Idbb325fe7cd18e487197b2fb79cfc264e9859570
44 lines
1.5 KiB
Java
44 lines
1.5 KiB
Java
/*
|
|
* Copyright (C) 2011 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;
|
|
|
|
import android.app.AlertDialog.Builder;
|
|
import android.content.Context;
|
|
import android.content.DialogInterface;
|
|
import android.os.SystemProperties;
|
|
import android.util.AttributeSet;
|
|
|
|
public class BugreportPreference extends CustomDialogPreference {
|
|
public BugreportPreference(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
}
|
|
|
|
@Override
|
|
protected void onPrepareDialogBuilder(Builder builder, DialogInterface.OnClickListener listener) {
|
|
super.onPrepareDialogBuilder(builder, listener);
|
|
builder.setPositiveButton(com.android.internal.R.string.report, listener);
|
|
builder.setMessage(com.android.internal.R.string.bugreport_message);
|
|
}
|
|
|
|
@Override
|
|
protected void onClick(DialogInterface dialog, int which) {
|
|
if (which == DialogInterface.BUTTON_POSITIVE) {
|
|
SystemProperties.set("ctl.start", "bugreportplus");
|
|
}
|
|
}
|
|
}
|