use of com.android.settings.notification.NotificationBackend in project android_packages_apps_Settings by omnirom.
the class ZenModeBypassingAppsSettings method createPreferenceControllers.
@Override
protected List<AbstractPreferenceController> createPreferenceControllers(Context context) {
final Activity activity = getActivity();
final Application app;
if (activity != null) {
app = activity.getApplication();
} else {
app = null;
}
return buildPreferenceControllers(context, app, this, new NotificationBackend());
}
Aggregations