I\'ve searched everywhere, but can\'t find anything in the SDK or on Google on how to do this. I know it\'s possible because all the custom launchers are able to do it via a
Yes you can add this code to wherever you want it to execute
Object sbservice = getSystemService( "statusbar" ); Class> statusbarManager = Class.forName( "android.app.StatusBarManager" ); Method showsb = statusbarManager.getMethod( "expand" ); showsb.invoke( sbservice );
And add this permission