HomeSort by relevance Sort by last modified time
    Searched full:objectanimator (Results 101 - 125 of 811) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/res/res/anim/
ft_avd_toarrow_rectangle_3_animation.xml 20 <objectAnimator
28 <objectAnimator
35 <objectAnimator
progress_indeterminate_material.xml 20 <objectAnimator
28 <objectAnimator
36 <objectAnimator
  /frameworks/base/core/tests/coretests/res/anim/
reset_state_anim.xml 17 <objectAnimator android:propertyName="x" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
18 <objectAnimator android:propertyName="y" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
19 <objectAnimator android:propertyName="z" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
test_animator.xml 19 <objectAnimator android:propertyName="x" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
20 <objectAnimator android:propertyName="y" android:duration="100" android:valueTo="1" android:valueType="floatType"/>
21 <objectAnimator android:propertyName="left" android:duration="100" android:valueTo="2" android:valueType="intType"/>
  /frameworks/base/docs/html/sdk/api_diff/21/changes/
android.animation.ObjectAnimator.html 10 android.animation.ObjectAnimator
74 Class android.animation.<A HREF="../../../../reference/android/animation/ObjectAnimator.html" target="_top"><font size="+2"><code>ObjectAnimator</code></font></A>
86 <A NAME="android.animation.ObjectAnimator.ofArgb_added(T, android.util.Property<T, java.lang.Integer>, int...)"></A>
87 <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofArgb(T, android.util.Property<T, java.lang.Integer>, int...)" target="_top"><code>ofArgb</code></A>(<code>T,</nobr> Property&lt;T<nobr>,</nobr> Integer&gt;<nobr><nobr></code>)</nobr>
93 <A NAME="android.animation.ObjectAnimator.ofArgb_added(java.lang.Object, java.lang.String, int...)"></A>
94 <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofArgb(java.lang.Object, java.lang.String, int...)" target="_top"><code>ofArgb</code></A>(<code>Object,</nobr> String<nobr><nobr></code>)</nobr>
100 <A NAME="android.animation.ObjectAnimator.ofFloat_added(T, android.util.Property<T, java.lang.Float>, android.util.Property<T, java.lang.Flo (…)
    [all...]
  /frameworks/base/packages/SystemUI/res/anim/
ic_hotspot_enable_animation_cross_1.xml 18 <objectAnimator
27 <objectAnimator
33 <objectAnimator
ic_invert_colors_enable_animation_cross_1.xml 18 <objectAnimator
27 <objectAnimator
33 <objectAnimator
ic_landscape_to_auto_rotate_animation_arrows.xml 18 <objectAnimator
24 <objectAnimator
30 <objectAnimator
ic_signal_airplane_enable_animation_cross_1.xml 18 <objectAnimator
27 <objectAnimator
33 <objectAnimator
ic_signal_flashlight_enable_animation_cross_1.xml 18 <objectAnimator
27 <objectAnimator
33 <objectAnimator
ic_signal_location_enable_animation_cross_1.xml 18 <objectAnimator
27 <objectAnimator
33 <objectAnimator
ic_signal_workmode_enable_animation_cross_1.xml 18 <objectAnimator
27 <objectAnimator
33 <objectAnimator
tv_pip_controls_in_recents_focus_gain_animation.xml 19 <objectAnimator
24 <objectAnimator
29 <objectAnimator
tv_pip_controls_in_recents_focus_loss_animation.xml 19 <objectAnimator
24 <objectAnimator
29 <objectAnimator
  /frameworks/base/tests/VectorDrawableTest/res/anim/
ic_rotate_2_portrait_v2_animation_arrows_1.xml 16 <objectAnimator
24 <objectAnimator
31 <objectAnimator
trim_path_animation_progress_bar.xml 20 <objectAnimator
28 <objectAnimator
36 <objectAnimator
  /frameworks/support/design/res/anim-v21/
design_appbar_state_list_animator.xml 20 <objectAnimator android:duration="@integer/app_bar_elevation_anim_duration"
27 <objectAnimator android:duration="@integer/app_bar_elevation_anim_duration"
34 <objectAnimator android:duration="0"
  /frameworks/support/samples/SupportVectorDrawable/animated/res/anim/
trim_path_animation_progress_bar.xml 20 <objectAnimator
28 <objectAnimator
36 <objectAnimator
  /packages/apps/Settings/res/anim/
enrollment_fingerprint_isolated_ridge_6_path_animation.xml 21 <objectAnimator
28 <objectAnimator
36 <objectAnimator
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
RecentsRowFocusAnimationHolder.java 20 import android.animation.ObjectAnimator;
48 ObjectAnimator.ofFloat(mView, "alpha", 1f),
49 ObjectAnimator.ofFloat(mTitleView, "alpha", 1f));
57 ObjectAnimator.ofFloat(mView, "alpha", 1f, dimAlpha),
58 ObjectAnimator.ofFloat(mTitleView, "alpha", 0f));
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
GlTextureViewActivity.java 19 import android.animation.ObjectAnimator;
54 ObjectAnimator animator = ObjectAnimator.ofFloat(mTextureView, "rotationY", 0.0f, 360.0f);
55 animator.setRepeatMode(ObjectAnimator.REVERSE);
56 animator.setRepeatCount(ObjectAnimator.INFINITE);
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
CcBccView.java 20 import android.animation.ObjectAnimator;
70 ObjectAnimator bccAnimator = ObjectAnimator.ofFloat(mBcc, "alpha", 0, 1);
75 ObjectAnimator ccAnimator = ObjectAnimator.ofFloat(mCc, "alpha", 0, 1);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationLoading.java 23 import android.animation.ObjectAnimator;
91 ObjectAnimator anim = (ObjectAnimator) AnimatorInflater.
109 ObjectAnimator colorizer = (ObjectAnimator) AnimatorInflater.
113 ObjectAnimator animPvh = (ObjectAnimator) AnimatorInflater.
118 ObjectAnimator animPvhKf = (ObjectAnimator) AnimatorInflater.
136 ObjectAnimator animPvhKfInterpolated = (ObjectAnimator) AnimatorInflater
    [all...]
  /cts/tests/tests/textureview/src/android/textureview/cts/
TextureViewTestActivity.java 18 import android.animation.ObjectAnimator;
48 ObjectAnimator rotate = ObjectAnimator.ofFloat(mTexView, "rotationY", 180);
49 ObjectAnimator fadeIn = ObjectAnimator.ofFloat(mTexView, "alpha", 0.3f, 1f);
50 ObjectAnimator scaleY = ObjectAnimator.ofFloat(mTexView, "scaleY", 0.3f, 1f);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
SurfaceViewTests.java 18 import android.animation.ObjectAnimator;
72 static ObjectAnimator createInfiniteAnimator(Object target, String prop,
74 ObjectAnimator a = ObjectAnimator.ofFloat(target, prop, start, end);
75 a.setRepeatMode(ObjectAnimator.REVERSE);
76 a.setRepeatCount(ObjectAnimator.INFINITE);
87 ObjectAnimator mAnimator;

Completed in 1119 milliseconds

1 2 3 45 6 7 8 91011>>