Back to project page GreenerGasPedal.
The source code is released under:
GNU General Public License
If you think the Android project GreenerGasPedal listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package name.nanek.greenerpedal.activity.support; //from ww w.j a va2 s .c o m import android.app.Activity; import android.os.Build; import android.view.WindowManager; public class APISafeKeyguardHider { //Perform SDK5+ only fields. private static final class SDK5 { public static void hideKeyguard(Activity activity) { activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED); activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD); } } public static void hideKeyguard(Activity activity) { if ( Integer.parseInt(Build.VERSION.SDK) < 5 ) { return; } SDK5.hideKeyguard(activity); } }