Loading res/xml/app_notification_settings.xml +0 −1 Original line number Diff line number Diff line Loading @@ -39,7 +39,6 @@ android:key="sensitive" android:title="@string/app_notification_sensitive_title" android:summary="@string/app_notification_sensitive_summary" android:enabled="false" android:persistent="false" /> </PreferenceScreen> src/com/android/settings/notification/AppNotificationSettings.java +13 −1 Original line number Diff line number Diff line Loading @@ -137,7 +137,9 @@ public class AppNotificationSettings extends SettingsPreferenceFragment { mSensitive = (SwitchPreference) findPreference(KEY_SENSITIVE); final boolean secure = new LockPatternUtils(getActivity()).isSecure(); if (!secure) { final boolean enabled = getLockscreenNotificationsEnabled(); final boolean allowPrivate = getLockscreenAllowPrivateNotifications(); if (!secure || !enabled || !allowPrivate) { getPreferenceScreen().removePreference(mSensitive); } Loading Loading @@ -193,6 +195,16 @@ public class AppNotificationSettings extends SettingsPreferenceFragment { } } private boolean getLockscreenNotificationsEnabled() { return Settings.Secure.getInt(getContentResolver(), Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS, 0) != 0; } private boolean getLockscreenAllowPrivateNotifications() { return Settings.Secure.getInt(getContentResolver(), Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, 0) != 0; } private void toastAndFinish() { Toast.makeText(mContext, R.string.app_not_found_dlg_text, Toast.LENGTH_SHORT).show(); getActivity().finish(); Loading src/com/android/settings/notification/NotificationAppList.java +20 −4 Original line number Diff line number Diff line Loading @@ -41,6 +41,7 @@ import android.os.SystemClock; import android.os.UserHandle; import android.os.UserManager; import android.provider.Settings; import android.service.notification.NotificationListenerService; import android.util.ArrayMap; import android.util.Log; import android.util.TypedValue; Loading Loading @@ -568,13 +569,28 @@ public class NotificationAppList extends PinnedHeaderListFragment } public boolean getSensitive(String pkg, int uid) { // TODO get visibility state from NoMan INotificationManager nm = INotificationManager.Stub.asInterface( ServiceManager.getService(Context.NOTIFICATION_SERVICE)); try { return nm.getPackageVisibilityOverride(pkg, uid) == Notification.VISIBILITY_PRIVATE; } catch (Exception e) { Log.w(TAG, "Error calling NoMan", e); return false; } } public boolean setSensitive(String pkg, int uid, boolean sensitive) { // TODO save visibility state to NoMan INotificationManager nm = INotificationManager.Stub.asInterface( ServiceManager.getService(Context.NOTIFICATION_SERVICE)); try { nm.setPackageVisibilityOverride(pkg, uid, sensitive ? Notification.VISIBILITY_PRIVATE : NotificationListenerService.Ranking.VISIBILITY_NO_OVERRIDE); return true; } catch (Exception e) { Log.w(TAG, "Error calling NoMan", e); return false; } } } } Loading
res/xml/app_notification_settings.xml +0 −1 Original line number Diff line number Diff line Loading @@ -39,7 +39,6 @@ android:key="sensitive" android:title="@string/app_notification_sensitive_title" android:summary="@string/app_notification_sensitive_summary" android:enabled="false" android:persistent="false" /> </PreferenceScreen>
src/com/android/settings/notification/AppNotificationSettings.java +13 −1 Original line number Diff line number Diff line Loading @@ -137,7 +137,9 @@ public class AppNotificationSettings extends SettingsPreferenceFragment { mSensitive = (SwitchPreference) findPreference(KEY_SENSITIVE); final boolean secure = new LockPatternUtils(getActivity()).isSecure(); if (!secure) { final boolean enabled = getLockscreenNotificationsEnabled(); final boolean allowPrivate = getLockscreenAllowPrivateNotifications(); if (!secure || !enabled || !allowPrivate) { getPreferenceScreen().removePreference(mSensitive); } Loading Loading @@ -193,6 +195,16 @@ public class AppNotificationSettings extends SettingsPreferenceFragment { } } private boolean getLockscreenNotificationsEnabled() { return Settings.Secure.getInt(getContentResolver(), Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS, 0) != 0; } private boolean getLockscreenAllowPrivateNotifications() { return Settings.Secure.getInt(getContentResolver(), Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, 0) != 0; } private void toastAndFinish() { Toast.makeText(mContext, R.string.app_not_found_dlg_text, Toast.LENGTH_SHORT).show(); getActivity().finish(); Loading
src/com/android/settings/notification/NotificationAppList.java +20 −4 Original line number Diff line number Diff line Loading @@ -41,6 +41,7 @@ import android.os.SystemClock; import android.os.UserHandle; import android.os.UserManager; import android.provider.Settings; import android.service.notification.NotificationListenerService; import android.util.ArrayMap; import android.util.Log; import android.util.TypedValue; Loading Loading @@ -568,13 +569,28 @@ public class NotificationAppList extends PinnedHeaderListFragment } public boolean getSensitive(String pkg, int uid) { // TODO get visibility state from NoMan INotificationManager nm = INotificationManager.Stub.asInterface( ServiceManager.getService(Context.NOTIFICATION_SERVICE)); try { return nm.getPackageVisibilityOverride(pkg, uid) == Notification.VISIBILITY_PRIVATE; } catch (Exception e) { Log.w(TAG, "Error calling NoMan", e); return false; } } public boolean setSensitive(String pkg, int uid, boolean sensitive) { // TODO save visibility state to NoMan INotificationManager nm = INotificationManager.Stub.asInterface( ServiceManager.getService(Context.NOTIFICATION_SERVICE)); try { nm.setPackageVisibilityOverride(pkg, uid, sensitive ? Notification.VISIBILITY_PRIVATE : NotificationListenerService.Ranking.VISIBILITY_NO_OVERRIDE); return true; } catch (Exception e) { Log.w(TAG, "Error calling NoMan", e); return false; } } } }