2010-12-14

全屏切换后status bar导致屏幕下移

当全屏切换出去之后再返回,status bar的位置会被空出来,导致整个view下移。
已经有人提了bug。
http://code.google.com/p/android/issues/detail?id=8052

下面的讨论中提供了一个hack,就是加上下面setFlags这句
http://groups.google.com/group/android-developers/browse_thread/thread/2de77043f32835aa/315d393bb8334db5


getWindow().setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);

1 条评论:

强风 说...

thank you for your advice