I find that I override the onAttachedToWindow()
public void onAttachedToWindow()
{
super.onAttachedToWindow();
getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
}
I use an intent to open another activity which is full screen. Also, I click 'back' to back to my application. The status bar is disappear.
Anyone have an idea to make the status bar appear?