Lines Matching refs:bar
44 This lesson describes how to hide the status bar on different versions of
45 Android. Hiding the status bar (and optionally, the navigation bar) lets the
51 Figure 1 shows an app with a visible status bar:
56 <p class="img-caption"><strong>Figure 1.</strong> Visible status bar.</p>
59 Figure 2 shows an app with a hidden status bar. Note that the action bar is hidden too.
60 You should never show the action bar without the status bar.
65 <p class="img-caption"><strong>Figure 2.</strong> Hidden status bar.</p>
69 <p>You can hide the status bar on Android 4.0 (API level 14) and lower by setting
72 manifest file is the preferred approach if the status bar should always remain
94 This approach makes it easier to hide and show the status bar as the user interacts with
103 // the status bar.
121 content from resizing when the status bar hides and shows.</p>
126 <p>You can hide the status bar on Android 4.1 (API level 16) and higher by
132 {@link android.view.WindowManager} flags. This snippet hides the status bar:</p>
135 // Hide the status bar.
138 // Remember that you should never show the action bar if the
139 // status bar is hidden, so hide that too if necessary.
172 the status bar, so that the content doesn't resize as the status bar hides and shows.