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 added a flag to an activity

getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);

is there a way to undo this without recreating activity? I need to do this whan a state changes in my application.

share|improve this question

1 Answer

found it

getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
share|improve this answer
1  
lol. this is a real fast self answer just 4 minutes. – rekire Sep 12 '12 at 11:59
somehow I've missed clear method when I've searched for this – gabi Sep 12 '12 at 12:34

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.