Hi I am developing an alarm app in android. I want my app to programmatic-ally unlock the keyguard and wake the screen. I am using the below code in my alarm activity page.

       setContentView(R.layout.alarm);
    mKeyGuardManager = (KeyguardManager) getSystemService(KEYGUARD_SERVICE);
      mLock = mKeyGuardManager.newKeyguardLock("AlarmActivity");
      mLock.disableKeyguard();

    pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
    wl = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, "SCREEN ON");
    wl.acquire();
    try {
        Thread.sleep( 5000);
    } catch (InterruptedException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }

     wl.release();

I works fine when i do it in my emulator. But when i run it in a phone the screen gets unlocked only the fist time i set an alarm in the phone after installing the app ans the rest of the time it does not pop up also it is not ringing. Can you please help??

link|improve this question

57% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.