1) Use UiBlocker, for better animations for apps with a lot of channels 2) Only load data in onResume, because the data loading step in some of the controllers is expensive Test: make -j64 RunSettingsRoboTests ROBOTEST_FILTER="com.android.settings.notification" Test: load small channel and large (6000ish) channel app pages Test: load individual channel pages Test: load in-app channel shelf UI Fixes: 215072888 Change-Id: I9a1c96f75b02f94b3ffc529d17d9c0cad7752de1
116 lines
3.8 KiB
Java
116 lines
3.8 KiB
Java
/*
|
|
* Copyright (C) 2020 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.notification.app;
|
|
|
|
import static android.app.NotificationManager.BUBBLE_PREFERENCE_ALL;
|
|
import static android.app.NotificationManager.BUBBLE_PREFERENCE_NONE;
|
|
import static android.provider.Settings.Secure.NOTIFICATION_BUBBLES;
|
|
|
|
import android.app.ActivityManager;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.res.Resources;
|
|
import android.provider.Settings;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.preference.Preference;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.notification.NotificationBackend;
|
|
|
|
/**
|
|
* Summary of the app setting for bubbles, available through app notification settings.
|
|
*/
|
|
public class BubbleSummaryPreferenceController extends NotificationPreferenceController {
|
|
private static final String KEY = "bubble_pref_link";
|
|
|
|
@VisibleForTesting
|
|
static final int ON = 1;
|
|
|
|
public BubbleSummaryPreferenceController(Context context, NotificationBackend backend) {
|
|
super(context, backend, KEY);
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
if (super.getAvailabilityStatus() == CONDITIONALLY_UNAVAILABLE) {
|
|
return CONDITIONALLY_UNAVAILABLE;
|
|
}
|
|
if (mAppRow == null) {
|
|
return CONDITIONALLY_UNAVAILABLE;
|
|
}
|
|
if (mChannel != null) {
|
|
if (!isGloballyEnabled()) {
|
|
return CONDITIONALLY_UNAVAILABLE;
|
|
}
|
|
if (isDefaultChannel()) {
|
|
return AVAILABLE;
|
|
} else {
|
|
return mAppRow != null ? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
|
|
}
|
|
}
|
|
if (isGloballyEnabled() && mBackend.hasSentValidBubble(mAppRow.pkg, mAppRow.uid)) {
|
|
return AVAILABLE;
|
|
}
|
|
return CONDITIONALLY_UNAVAILABLE;
|
|
}
|
|
|
|
@Override
|
|
boolean isIncludedInFilter() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public String getPreferenceKey() {
|
|
return KEY;
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
super.updateState(preference);
|
|
|
|
if (mAppRow != null) {
|
|
final Intent intent = new Intent(Settings.ACTION_APP_NOTIFICATION_BUBBLE_SETTINGS);
|
|
intent.putExtra(Settings.EXTRA_APP_PACKAGE, mAppRow.pkg);
|
|
intent.putExtra(Settings.EXTRA_APP_UID, mAppRow.uid);
|
|
preference.setIntent(intent);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getSummary() {
|
|
if (mAppRow == null) {
|
|
return null;
|
|
}
|
|
int backEndPref = mAppRow.bubblePreference;
|
|
Resources res = mContext.getResources();
|
|
if (backEndPref == BUBBLE_PREFERENCE_NONE || !isGloballyEnabled()) {
|
|
return res.getString(R.string.bubble_app_setting_none);
|
|
} else if (backEndPref == BUBBLE_PREFERENCE_ALL) {
|
|
return res.getString(R.string.bubble_app_setting_all);
|
|
} else {
|
|
return res.getString(R.string.bubble_app_setting_selected);
|
|
}
|
|
}
|
|
|
|
private boolean isGloballyEnabled() {
|
|
ActivityManager am = mContext.getSystemService(ActivityManager.class);
|
|
return !am.isLowRamDevice() && Settings.Secure.getInt(mContext.getContentResolver(),
|
|
NOTIFICATION_BUBBLES, ON) == ON;
|
|
}
|
|
}
|