Notification History in 4.3+

Android 4.3 has a new hidden feature: Notification History.
Currently there is no action.

You can see it in Manifest.xml:
https://github.com/android/platform_packages_apps_settings/blob/master/AndroidManifest.xml#L785


A simple way could be this:
Intent intent = new Intent("android.settings.SETTINGS");
intent.putExtra(PreferenceActivity.EXTRA_SHOW_FRAGMENT,
                        "com.android.settings.NotificationStation" );
Otherwise you can use:
Widgets->Setting shortcuts->Notifications and put a shortcut in your home launcher.

Comments

Popular posts from this blog

AntiPattern: freezing a UI with Broadcast Receiver

How to centralize the support libraries dependencies in gradle

NotificationListenerService and kitkat