Lines Matching refs:page

1 page.title=Using ViewPager for Screen Slides
86 …u can then create instances of this fragment in the parent activity whenever you need a new page to
136 If the user is already on the first page, go back on the activity back stack.</li>
210 …ansition, this method is called once for each visible page (generally there's only one visible pag…
211 For example, if page three is visible and the user drags towards page four,
218 position of the page on the screen, which is obtained from the <code>position</code> parameter
221 <p>The <code>position</code> parameter indicates where a given page is located relative to the cent…
222 It is a dynamic property that changes as the user scrolls through the pages. When a page fills the …
223page is drawn just off the right side of the screen, its position value is <code>1</code>. If the …
240 <p>See the <a href="#zoom-out">Zoom-out page transformer</a> and <a href="#depth-page">Depth page t…
244 <h3 id="zoom-out">Zoom-out page transformer</h3>
246 This page transformer shrinks and fades pages when scrolling between
247 adjacent pages. As a page gets closer to the center, it grows back to
275 // This page is way off-screen to the left.
279 // Modify the default slide transition to shrink the page as well
289 // Scale the page down (between MIN_SCALE and 1)
293 // Fade the page relative to its size.
299 // This page is way off-screen to the right.
306 <h3 id="depth-page">Depth page transformer</h3>
308 This page transformer uses the default slide animation for sliding pages
310 right. This depth animation fades the page out, and scales it down linearly.
336 in a working page transformer:
348 // This page is way off-screen to the left.
352 // Use the default slide transition when moving to the left page
359 // Fade the page out.
365 // Scale the page down (between MIN_SCALE and 1)
372 // This page is way off-screen to the right.