Background
I have an application that has 2 actions:
- burst activity, which is displayed in full screen mode (no action bar, notification bar)
- The main action, which has both an action bar (uses actionBarSherlock) and a notification bar.
Problem
For some reason, when switching from the first action to the second, a βbustingβ build process occurs, which shows the contents of the second action without an action bar and notification bar, and after a moment it shows them as.
This causes the content below to move too much, which is very noticeable.
Possible Solution
As I saw, a possible solution would be to hide the action bar and show it a little later (500 ms later), but this seems like a bad solution (which makes it slower and hides for no reason), plus I need to get the position of the actionBar elements for another purpose ( to display the tutorial).
Question
Is it possible to avoid a "respite"? One that doesn't involve such a weird workaround?
android actionbarsherlock android-notification-bar android-fullscreen
android developer
source share