Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have one application which will notify users when any alarm raised on the server, so when alarm comes App will play the beep sound and open the activity, even the device is in sleep mode , it wakes up dismiss the keyguard and display activity with beep sound. this feature working fine in other tabs but in samsung galaxy tab it doesn't dismiss the keyguard.Beep sound come propelry and when you manually release the keyguard of device you can be able to see the activity which has to be displayed when alarms generates.

I am using below code to dismiss the keyguard in activity's onCreate method :

getWindow().addFlags(WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD);

Not sure why this code is not working in Samsung Galaxy tab.Can anybody provide me some clue about it? Regards, Piks

share|improve this question
got the same problem, wonder how to high the softkeyboard :/ – goodm May 17 '12 at 9:10
Samsung Galaxy tab may have customized KEYGUARD – niks May 17 '12 at 9:22

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.