Lines Matching refs:lt

203 <style name="BaseAppTheme" parent="android:Theme.Material">
204 <!-- enable window content transitions -->
205 <item name="android:windowContentTransitions">true</item>
207 <!-- specify enter and exit transitions -->
208 <item name="android:windowEnterTransition">@transition/explode</item>
209 <item name="android:windowExitTransition">@transition/explode</item>
211 <!-- specify shared element transitions -->
212 <item name="android:windowSharedElementEnterTransition">
213 @transition/change_image_transform</item>
214 <item name="android:windowSharedElementExitTransition">
215 @transition/change_image_transform</item>
216 </style>
222 <!-- res/transition/change_image_transform.xml -->
223 <!-- (see also Shared Transitions below) -->
224 <transitionSet xmlns:android="http://schemas.android.com/apk/res/android">
225 <changeImageTransform/>
226 </transitionSet>
354 <pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
392 <!-- animate the translationZ property of a view when pressed -->
393 <selector xmlns:android="http://schemas.android.com/apk/res/android">
394 <item android:state_pressed="true">
395 <set>
396 <objectAnimator android:propertyName="translationZ"
400 <!-- you could have other objectAnimator elements
402 </set>
403 </item>
404 <item android:state_enabled="true"
407 <set>
408 <objectAnimator android:propertyName="translationZ"
412 </set>
413 </item>
414 </selector>
434 <!-- res/drawable/myanimstatedrawable.xml -->
435 <animated-selector
438 <!-- provide a different drawable for each state-->
439 <item android:id="@+id/pressed" android:drawable="@drawable/drawableP"
441 <item android:id="@+id/focused" android:drawable="@drawable/drawableF"
443 <item android:id="@id/default"
446 <!-- specify a transition -->
447 <transition android:fromId="@+id/default" android:toId="@+id/pressed">
448 <animation-list>
449 <item android:duration="15" android:drawable="@drawable/dt1"/>
450 <item android:duration="15" android:drawable="@drawable/dt2"/>
452 </animation-list>
453 </transition>
455 </animated-selector>
468 <li>A vector drawable with the <code>&lt;vector&gt;</code> element in
470 <li>An animated vector drawable with the <code>&lt;animated-vector&gt;</code> element in
472 <li>One or more object animators with the <code>&lt;objectAnimator&gt;</code> element in
476 <p>Animated vector drawables can animate the attributes of the <code>&lt;group&gt;</code> and
477 <code>&lt;path&gt;</code> elements. The <code>&lt;group&gt;</code> elements defines a set of
478 paths or subgroups, and the <code>&lt;path&gt;</code> element defines paths to be drawn.</p>
485 &lt;!-- res/drawable/vectordrawable.xml -->
486 &lt;vector xmlns:android="http://schemas.android.com/apk/res/android"
491 &lt;group
496 &lt;path
500 &lt;/group>
501 &lt;/vector>
508 &lt;!-- res/drawable/animvectordrawable.xml -->
509 &lt;animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
511 &lt;target
514 &lt;target
517 &lt;/animated-vector>
525 &lt;!-- res/anim/rotation.xml -->
526 &lt;objectAnimator
538 &lt;!-- res/anim/path_morph.xml -->
539 &lt;set xmlns:android="http://schemas.android.com/apk/res/android">
540 &lt;objectAnimator
546 &lt;/set>