My app runs in fullscreen fine, but when a alert dialog pops up the status bar flickers from under the fullscreen. Also when I try typing in the dialog popup it also makes the status bar flicker.
The funny thing is it worked before, but I must have changed something and I don't remember what.
To get fullscreen I am using this in the manifest.
@android:style/Theme.NoTitleBar.Fullscreen
I have also tried but I get the same effect...
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
Any ideas?