Home
last modified time | relevance | path

Searched refs:transitions (Results 1 – 25 of 71) sorted by relevance

123

/frameworks/base/docs/html/training/transitions/
Dindex.jd41 <p>Android includes the <em>transitions framework</em>, which enables you to easily
46 <p>This class teaches you to use the built-in animations in the transitions framework to
52 Library's <a href="/reference/android/support/transitions/package-summary.html"
58 <dt><a href="{@docRoot}training/transitions/overview.html">
61 Learn the main features and components of the transitions framework.
63 <dt><a href="{@docRoot}training/transitions/scenes.html">
68 <dt><a href="{@docRoot}training/transitions/transitions.html">
73 <dt><a href="{@docRoot}training/transitions/custom-transitions.html">
76 Learn how to create other animation effects not included in the transitions framework.
Doverview.jd21 transitions framework. This framework applies one or more animations to all the views in the
38 <source src="{@docRoot}images/transitions/transition_sample_video.mp4" type="video/mp4">
39 <source src="{@docRoot}images/transitions/transition_sample_video.ogv" type="video/ogg">
40 <source src="{@docRoot}images/transitions/transition_sample_video.webm" type="video/webm">
63 <p>This animation is an example of using the transitions framework. The framework
70 <p>The transitions framework works in parallel with view hierarchies and animations. The
79 <img src="{@docRoot}images/transitions/transitions_diagram.png"
81 <p class="img-caption"><strong>Figure 2.</strong> Relationships in the transitions framework.</p>
83 <p>The transitions framework provides abstractions for scenes, transitions, and transition
100 <p>The transitions framework lets you create scenes from layout resource files or from
[all …]
Dscenes.jd17 values. The transitions framework can run animations between a starting and an ending scene.
27 <a href="{@docRoot}training/transitions/transitions.html#NoScenes">Apply a Transition Without
28 Scenes</a>. However, understanding this lesson is essential to work with transitions.</p>
195 <li>Animate views that the transitions framework cannot animate automatically, such as
197 <a href="{@docRoot}training/transitions/overview.html#Limitations">Limitations</a>.</li>
210 <a href="{@docRoot}training/transitions/transitions.html#Callbacks">Defining Transition
Dtransitions.jd19 <p>In the transitions framework, animations create a series of frames that depict a change
25 <p>This lesson teaches you run an animation between two scenes using built-in transitions
26 to move, resize, and fade views. The next lesson shows you how to define custom transitions.</p>
85 <li>Add an XML node for one of the built-in transitions.</li>
154 <p>The framework applies transitions to all views in the starting and ending scenes by
179 <p>You do not have to choose only one animation, since the transitions framework enables you
181 or custom transitions.</p>
183 <p>To define a transition set from a collection of transitions in XML, create a resource file
184 in the <code>res/transitions/</code> directory and list the transitions under the
223 hierarchy using a <em>delayed transition</em>. This feature of the transitions framework
Dcustom-transitions.jd28 custom transitions.</p>
68 are specific to a transition, the transitions framework does not provide every property value
187 <p>Custom transitions work the same as built-in transitions. You can apply a custom transition
189 href="{@docRoot}training/transitions/transitions.html#Apply">Applying a Transition</a>.</p>
/frameworks/base/core/java/android/transition/
DTransitionUtils.java53 public static Transition mergeTransitions(Transition... transitions) { in mergeTransitions() argument
56 for (int i = 0; i < transitions.length; i++) { in mergeTransitions()
57 if (transitions[i] != null) { in mergeTransitions()
68 return transitions[nonNullIndex]; in mergeTransitions()
72 for (int i = 0; i < transitions.length; i++) { in mergeTransitions()
73 if (transitions[i] != null) { in mergeTransitions()
74 transitionSet.addTransition(transitions[i]); in mergeTransitions()
DTransitionManager.java211 ArrayMap<ViewGroup, ArrayList<Transition>> transitions = in getRunningTransitions() local
214 transitions); in getRunningTransitions()
/frameworks/base/docs/html/training/material/
Danimations.jd26 for buttons and activity transitions, and Android 5.0 (API level 21) and above lets you customize
32 <li>Activity transitions</li>
42 for buttons use the new {@link android.graphics.drawable.RippleDrawable} class, which transitions
148 <p>Activity transitions in material design apps provide visual connections between different states
150 enter and exit transitions and for transitions of shared elements between activities.</p>
167 <p>Android 5.0 (API level 21) supports these enter and exit transitions:</p>
179 <p>Android 5.0 (API level 21) also supports these shared elements transitions:</p>
188 <p>When you enable activity transitions in your app, the default cross-fading transition is
197 <h3 id="custom-trans">Specify custom transitions</h3>
199 <p>First, enable window content transitions with the <code>android:windowActivityTransitions</code>
[all …]
Dget-started.jd77 default animations for touch feedback and activity transitions. For more details, see
146 For example, you can enable activity transitions and define an exit transition inside an
155 // enable transitions
Dcompatibility.jd23 <p>Some material design features like the material theme and custom activity transitions are
146 <li>Activity transitions</li>
/frameworks/base/docs/html/training/
Dtraining_toc.cs510 <a href="<?cs var:toroot?>training/transitions/index.html"
512 "How to animate state changes in a view hierarchy using transitions."
516 <li><a href="<?cs var:toroot ?>training/transitions/overview.html">
520 <li><a href="<?cs var:toroot ?>training/transitions/scenes.html">
524 <li><a href="<?cs var:toroot ?>training/transitions/transitions.html">
528 <li><a href="<?cs var:toroot ?>training/transitions/custom-transitions.html">
/frameworks/base/docs/html/topic/performance/
Dperformance_toc.cs510 <a href="<?cs var:toroot?>training/transitions/index.html"
512 "How to animate state changes in a view hierarchy using transitions."
516 <li><a href="<?cs var:toroot ?>training/transitions/overview.html">
520 <li><a href="<?cs var:toroot ?>training/transitions/scenes.html">
524 <li><a href="<?cs var:toroot ?>training/transitions/transitions.html">
528 <li><a href="<?cs var:toroot ?>training/transitions/custom-transitions.html">
/frameworks/base/docs/html-intl/intl/ja/training/material/
Danimations.jd148 <p>マテリアル デザイン アプリの Activity transitions (アクティビティ遷移)では、共通する要素の間での動作や変化を通じて、状態の切り替えに視覚的なつながりを持たせます。
204 &lt;!-- enable window content transitions -->
207 &lt;!-- specify enter and exit transitions -->
211 &lt;!-- specify shared element transitions -->
237 // inside your activity (if you did not enable transitions in your theme)
Dget-started.jd154 // enable transitions
/frameworks/support/transition/ics/android/support/transition/
DTransitionManagerPort.java112 ArrayMap<ViewGroup, ArrayList<TransitionPort>> transitions = new ArrayMap<>(); in getRunningTransitions() local
113 runningTransitions = new WeakReference<>(transitions); in getRunningTransitions()
/frameworks/base/docs/html-intl/intl/ko/training/material/
Danimations.jd204 &lt;!-- enable window content transitions -->
207 &lt;!-- specify enter and exit transitions -->
211 &lt;!-- specify shared element transitions -->
237 // inside your activity (if you did not enable transitions in your theme)
Dget-started.jd154 // enable transitions
/frameworks/base/docs/html-intl/intl/ru/training/material/
Danimations.jd204 &lt;!-- enable window content transitions -->
207 &lt;!-- specify enter and exit transitions -->
211 &lt;!-- specify shared element transitions -->
237 // inside your activity (if you did not enable transitions in your theme)
/frameworks/base/docs/html-intl/intl/zh-tw/training/material/
Danimations.jd204 &lt;!-- enable window content transitions -->
207 &lt;!-- specify enter and exit transitions -->
211 &lt;!-- specify shared element transitions -->
237 // inside your activity (if you did not enable transitions in your theme)
Dget-started.jd154 // enable transitions
/frameworks/base/docs/html-intl/intl/zh-cn/training/material/
Danimations.jd204 &lt;!-- enable window content transitions -->
207 &lt;!-- specify enter and exit transitions -->
211 &lt;!-- specify shared element transitions -->
237 // inside your activity (if you did not enable transitions in your theme)
/frameworks/base/services/tests/servicestests/src/com/android/server/connectivity/
DLingerMonitorTest.java282 void setNotificationSwitch(String... transitions) { in setNotificationSwitch() argument
284 .thenReturn(transitions); in setNotificationSwitch()
/frameworks/base/docs/html/distribute/googleplay/
Dcast.jd38 <li>While content is loading, provide animated loading indicators and use transitions
/frameworks/base/docs/html/design/material/
Dindex.jd63 their color palette, and default animations for touch feedback and activity transitions.</p>
140 changes in view state, and activity transitions.</p>
/frameworks/base/docs/html/training/maps/
Dindex.jd32 and hybrid maps; vector-based tiles for efficient caching and drawing; animated transitions; and

123