Migrates Notification settings (app level, group level, and channel level) into PreferenceControllers (and most importantly: PreferenceControllerTest) Note: this removes the 'Advanced' preference group, but does not yet use the standard system 'Advanced' grouping as it does not currently support our use case (where we don't know how many fields to show outside of 'Advanced' until onResume() and also where we need fields to show below the 'Advanced' group). Test: make RunSettingsRoboTests Change-Id: Iddd1b4771922db322e5f73562e9d63ed077c5396
99 lines
3.8 KiB
Java
99 lines
3.8 KiB
Java
/*
|
|
* Copyright (C) 2016 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;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.preference.PreferenceManager;
|
|
import android.text.TextUtils;
|
|
import android.util.Log;
|
|
|
|
import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
|
|
import com.android.internal.widget.LockPatternUtils;
|
|
import com.android.settings.R;
|
|
import com.android.settingslib.core.AbstractPreferenceController;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class ChannelNotificationSettings extends NotificationSettingsBase {
|
|
private static final String TAG = "ChannelSettings";
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return MetricsEvent.NOTIFICATION_TOPIC_NOTIFICATION;
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
if (mUid < 0 || TextUtils.isEmpty(mPkg) || mPkgInfo == null || mChannel == null) {
|
|
Log.w(TAG, "Missing package or uid or packageinfo or channel");
|
|
finish();
|
|
return;
|
|
}
|
|
|
|
for (NotificationPreferenceController controller : mControllers) {
|
|
controller.onResume(mAppRow, mChannel, mChannelGroup, mSuspendedAppsAdmin);
|
|
controller.displayPreference(getPreferenceScreen());
|
|
}
|
|
updatePreferenceStates();
|
|
}
|
|
|
|
@Override
|
|
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
for (NotificationPreferenceController controller : mControllers) {
|
|
if (controller instanceof PreferenceManager.OnActivityResultListener) {
|
|
((PreferenceManager.OnActivityResultListener) controller)
|
|
.onActivityResult(requestCode, resultCode, data);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected String getLogTag() {
|
|
return TAG;
|
|
}
|
|
|
|
@Override
|
|
protected int getPreferenceScreenResId() {
|
|
return R.xml.channel_notification_settings;
|
|
}
|
|
|
|
@Override
|
|
protected List<AbstractPreferenceController> getPreferenceControllers(Context context) {
|
|
mControllers = new ArrayList<>();
|
|
mControllers.add(new HeaderPreferenceController(context, this));
|
|
mControllers.add(new BlockPreferenceController(context, mImportanceListener, mBackend));
|
|
mControllers.add(new ImportancePreferenceController(context));
|
|
mControllers.add(new AllowSoundPreferenceController(
|
|
context, mImportanceListener, mBackend));
|
|
mControllers.add(new SoundPreferenceController(context, this,
|
|
mImportanceListener, mBackend));
|
|
mControllers.add(new VibrationPreferenceController(context, mBackend));
|
|
mControllers.add(new AppLinkPreferenceController(context));
|
|
mControllers.add(new DescriptionPreferenceController(context));
|
|
mControllers.add(new VisibilityPreferenceController(context, new LockPatternUtils(context),
|
|
mBackend));
|
|
mControllers.add(new LightsPreferenceController(context, mBackend));
|
|
mControllers.add(new BadgePreferenceController(context, mBackend));
|
|
mControllers.add(new DndPreferenceController(context, getLifecycle(), mBackend));
|
|
mControllers.add(new NotificationsOffPreferenceController(context));
|
|
return new ArrayList<>(mControllers);
|
|
}
|
|
}
|