I am using following code to open Application settings, but I need to open Notification center from my application.Is it possible to open Notification center from the application? If so, Please guide a way to do so.
Intent intent = new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
intent.setData(Uri.parse("package:" + getPackageName()));
startActivity(intent);