• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:bar

18   <li><a href="#action-bar">Synchronize the Status Bar with Action Bar Transition</a></li>
47 This lesson describes how to hide the status bar on different versions of
48 Android. Hiding the status bar (and optionally, the navigation bar) lets the
54 Figure 1 shows an app with a visible status bar:
59 <p class="img-caption"><strong>Figure 1.</strong> Visible status bar.</p>
62 Figure 2 shows an app with a hidden status bar. Note that the action bar is hidden too.
63 You should never show the action bar without the status bar.
68 <p class="img-caption"><strong>Figure 2.</strong> Hidden status bar.</p>
72 <p>You can hide the status bar on Android 4.0 (API level 14) and lower by setting
75 manifest file is the preferred approach if the status bar should always remain
97 This approach makes it easier to hide and show the status bar as the user interacts with
106 // the status bar.
124 content from resizing when the status bar hides and shows.</p>
129 <p>You can hide the status bar on Android 4.1 (API level 16) and higher by
135 {@link android.view.WindowManager} flags. This snippet hides the status bar:</p>
138 // Hide the status bar.
141 // Remember that you should never show the action bar if the
142 // status bar is hidden, so hide that too if necessary.
175 the status bar, so that the content doesn't resize as the status bar hides and shows.
198 <h2 id="action-bar">Synchronize the Status Bar with Action Bar Transition</h2>
200 <p>On Android 4.1 and higher, to avoid resizing your layout when the action bar hides and
201 … can enable overlay mode for the <a href="{@docRoot}guide/topics/ui/actionbar.html">action bar</a>.
203 space available as if the action bar is not there and the system draws the action bar in
205 action bar hides or appears, the system does not need to resize your layout and the
208 <p>To enable overlay mode for the action bar, you need to create a custom theme that
209 extends an existing theme with an action bar and set the
225 This also hides the action bar (because {@code windowActionBarOverlay=”true”)} and does