Home | History | Annotate | Download | only in transitions

Lines Matching full:property

10   <li><a href="#CaptureProperties">Capture View Property Values</a></li>
24 however, you have to provide the code that captures property values and generates animations.
27 <p>This lesson teaches you to capture property values and generate animations to create
57 <h2 id="CaptureProperties">Capture View Property Values</h2>
59 <p>Transition animations use the property animation system described in
60 <a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a>. Property
61 animations change a view property between a starting and ending value over a specified
63 the property to construct the animation.</p>
65 <p>However, a property animation usually needs only a small subset of all the view's property
66 values. For example, a color animation needs color property values, while a movement
67 animation needs position property values. Since the property values needed for an animation
68 are specific to a transition, the transitions framework does not provide every property value
70 capture only the property values it needs and store them in the framework.</p>
80 want. In your implementation, retrieve these property values and pass them back to the
83 <p>To ensure that the key for a property value does not conflict with other {@link
96 // Define a key for storing a property value in
114 // Store its background property in the values map
141 methods invoke <code>captureValues()</code> to retrieve and store values. The view property
175 a custom transition, use the view property values you captured to create an {@link
180 CustomTransition</a> sample. For more information about property animators, see
181 <a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a>.</p>