Lines Matching refs:screen
28 Screen slides are transitions between one entire screen to another and are common with UIs
29 like setup wizards or slideshows. This lesson shows you how to do screen slides with
32 {@link android.support.v4.view.ViewPager}s can animate screen slides
33 automatically. Here's what a screen slide looks like that transitions from
34 one screen of content to the next:
106 …through pages, and they display screen slide animations by default, so you don't need to create an…
201 <p>To display a different animation from the default screen slide animation, implement the
203 …screen's transition, this method is called once for each visible page (generally there's only one …
211 position of the page on the screen, which is obtained from the <code>position</code> parameter
214 …ion</code> parameter indicates where a given page is located relative to the center of the screen.
215 …hat changes as the user scrolls through the pages. When a page fills the screen, its position valu…
216 …screen, its position value is <code>1</code>. If the user scrolls halfway between pages one and tw…
268 // This page is way off-screen to the left.
292 // This page is way off-screen to the right.
319 <p class="note"><strong>Note:</strong> During the depth animation, the default animation (a screen …
320 takes place, so you must counteract the screen slide with a negative X translation.
328 The following example shows how to counteract the default screen slide animation
341 // This page is way off-screen to the left.
365 // This page is way off-screen to the right.