• Home
  • Raw
  • Download

Lines Matching refs:views

26 to move, resize, and fade views. The next lesson shows you how to define custom transitions.</p>
52 <td>Default transition. Fade out, move and resize, and fade in views, in that order.</td>
59 <code>fade_in</code> fades in views<br>
60 <code>fade_out</code> fades out views<br>
68 <td>Moves and resizes views.</td>
154 <p>The framework applies transitions to all views in the starting and ending scenes by
155 default. In some cases, you may only want to apply an animation to a subset of views in a
158 transition. The framework enables you to select specific views you want to animate.</p>
163 <p>To remove one or more views from the list of targets, call the {@link
165 the transition. To add only the views you specify to the list of targets, call the
174 that occur between the scenes. For example, if you are removing some views and adding others
175 between scenes, a fade out/fade in animation provides a noticeable indication that some views
176 are no longer available. If you are moving views to different points on the screen, a better
177 choice would be to animate the movement so that users notice the new location of the views.</p>
209 make changes by adding, modifying, and removing child views within the current hierarchy. For
224 starts with the current view hierarchy state, records changes you make to its views, and applies
232 TransitionManager.beginDelayedTransition()} method providing the parent view of all the views
234 child views and their property values.</li>
235 <li>Make changes to the child views as required by your use case. The framework records
236 the changes you make to the child views and their properties.</li>