This reverts commit 2d96005aba.
Reason for revert: prebuilt revert
Bug: 73903252
Bug: 73876473
Bug: 73875529
Bug: 73866916
Change-Id: I5d47a7c5ddebc16c1c508f5bb48ace809cbaf273
153 lines
5.9 KiB
Java
153 lines
5.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.slices;
|
|
|
|
import static com.android.settings.slices.SettingsSliceProvider.EXTRA_SLICE_KEY;
|
|
|
|
import android.app.PendingIntent;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.graphics.drawable.Icon;
|
|
import android.text.TextUtils;
|
|
import android.util.Log;
|
|
|
|
import com.android.internal.annotations.VisibleForTesting;
|
|
import com.android.settings.R;
|
|
import com.android.settings.SubSettings;
|
|
import com.android.settings.core.BasePreferenceController;
|
|
import com.android.settings.core.TogglePreferenceController;
|
|
import com.android.settings.search.DatabaseIndexingUtils;
|
|
import com.android.settingslib.core.AbstractPreferenceController;
|
|
|
|
import androidx.app.slice.Slice;
|
|
import androidx.app.slice.builders.ListBuilder;
|
|
import androidx.app.slice.builders.ListBuilder.RowBuilder;
|
|
|
|
/**
|
|
* Utility class to build Slices objects and Preference Controllers based on the Database managed
|
|
* by {@link SlicesDatabaseHelper}
|
|
*/
|
|
public class SliceBuilderUtils {
|
|
|
|
private static final String TAG = "SliceBuilder";
|
|
|
|
/**
|
|
* Build a Slice from {@link SliceData}.
|
|
*
|
|
* @return a {@link Slice} based on the data provided by {@param sliceData}.
|
|
* Will build an {@link Intent} based Slice unless the Preference Controller name in
|
|
* {@param sliceData} is an inline controller.
|
|
*/
|
|
public static Slice buildSlice(Context context, SliceData sliceData) {
|
|
final PendingIntent contentIntent = getContentIntent(context, sliceData);
|
|
final Icon icon = Icon.createWithResource(context, sliceData.getIconResource());
|
|
final BasePreferenceController controller = getPreferenceController(context, sliceData);
|
|
|
|
final String subtitleText = getSubtitleText(context, controller, sliceData);
|
|
|
|
final RowBuilder builder = new RowBuilder(context, sliceData.getUri())
|
|
.setTitle(sliceData.getTitle())
|
|
.setTitleItem(icon)
|
|
.setSubtitle(subtitleText)
|
|
.setContentIntent(contentIntent);
|
|
|
|
// TODO (b/71640747) Respect setting availability.
|
|
|
|
if (controller instanceof TogglePreferenceController) {
|
|
addToggleAction(context, builder, ((TogglePreferenceController) controller).isChecked(),
|
|
sliceData.getKey());
|
|
}
|
|
|
|
return new ListBuilder(context, sliceData.getUri())
|
|
.addRow(builder)
|
|
.build();
|
|
}
|
|
|
|
/**
|
|
* Looks at the {@link SliceData#preferenceController} from {@param sliceData} and attempts to
|
|
* build an {@link AbstractPreferenceController}.
|
|
*/
|
|
public static BasePreferenceController getPreferenceController(Context context,
|
|
SliceData sliceData) {
|
|
try {
|
|
return BasePreferenceController.createInstance(context,
|
|
sliceData.getPreferenceController());
|
|
} catch (IllegalStateException e) {
|
|
// Do nothing
|
|
Log.d(TAG, "Could not find Context-only controller for preference controller: "
|
|
+ sliceData.getKey());
|
|
}
|
|
|
|
return BasePreferenceController.createInstance(context, sliceData.getPreferenceController(),
|
|
sliceData.getKey());
|
|
}
|
|
|
|
private static void addToggleAction(Context context, RowBuilder builder, boolean isChecked,
|
|
String key) {
|
|
PendingIntent actionIntent = getActionIntent(context,
|
|
SettingsSliceProvider.ACTION_TOGGLE_CHANGED, key);
|
|
builder.addToggle(actionIntent, isChecked);
|
|
}
|
|
|
|
private static PendingIntent getActionIntent(Context context, String action, String key) {
|
|
Intent intent = new Intent(action);
|
|
intent.setClass(context, SliceBroadcastReceiver.class);
|
|
intent.putExtra(EXTRA_SLICE_KEY, key);
|
|
return PendingIntent.getBroadcast(context, 0 /* requestCode */, intent,
|
|
PendingIntent.FLAG_CANCEL_CURRENT);
|
|
}
|
|
|
|
private static PendingIntent getContentIntent(Context context, SliceData sliceData) {
|
|
Intent intent = DatabaseIndexingUtils.buildSearchResultPageIntent(context,
|
|
sliceData.getFragmentClassName(), sliceData.getKey(), sliceData.getScreenTitle(),
|
|
0 /* TODO */);
|
|
intent.setClassName("com.android.settings", SubSettings.class.getName());
|
|
return PendingIntent.getActivity(context, 0 /* requestCode */, intent, 0 /* flags */);
|
|
}
|
|
|
|
@VisibleForTesting
|
|
static String getSubtitleText(Context context, AbstractPreferenceController controller,
|
|
SliceData sliceData) {
|
|
String summaryText = sliceData.getSummary();
|
|
if (isValidSummary(context, summaryText)) {
|
|
return summaryText;
|
|
}
|
|
|
|
if (controller != null) {
|
|
summaryText = controller.getSummary();
|
|
|
|
if (isValidSummary(context, summaryText)) {
|
|
return summaryText;
|
|
}
|
|
}
|
|
|
|
return sliceData.getScreenTitle();
|
|
}
|
|
|
|
private static boolean isValidSummary(Context context, String summary) {
|
|
if (summary == null || TextUtils.isEmpty(summary.trim())) {
|
|
return false;
|
|
}
|
|
|
|
final String placeHolder = context.getString(R.string.summary_placeholder);
|
|
final String doublePlaceHolder = context.getString(R.string.summary_two_lines_placeholder);
|
|
|
|
return !(TextUtils.equals(summary, placeHolder)
|
|
|| TextUtils.equals(summary, doublePlaceHolder));
|
|
}
|
|
}
|