OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AnimationUtils
(Results
1 - 25
of
53
) sorted by null
1
2
3
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAnimationUtilsTest.java
7
import android.view.animation.
AnimationUtils
;
20
assertThat(
AnimationUtils
.loadAnimation(Robolectric.setupActivity(Activity.class), R.anim.fade_in)).isNotNull();
25
assertThat(
AnimationUtils
.loadLayoutAnimation(Robolectric.setupActivity(Activity.class), 1)).isNotNull();
30
final LayoutAnimationController anim =
AnimationUtils
.loadLayoutAnimation(Robolectric.setupActivity(Activity.class), R.anim.fade_in);
/frameworks/support/leanback/src/main/java/androidx/leanback/transition/
LeanbackTransitionHelper.java
21
import android.view.animation.
AnimationUtils
;
40
slide.setInterpolator(
AnimationUtils
.loadInterpolator(context,
53
slide.setInterpolator(
AnimationUtils
.loadInterpolator(context,
/cts/tests/tests/uirendering/src/android/uirendering/cts/util/
MockVsyncHelper.java
22
import android.view.animation.
AnimationUtils
;
38
AnimationUtils
.lockAnimationClock(16);
54
AnimationUtils
.lockAnimationClock(
AnimationUtils
.currentAnimationTimeMillis() + 16);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AnimationUtilsTest.java
6
import android.view.animation.
AnimationUtils
;
22
assertThat(
AnimationUtils
.loadAnimation(new Activity(), 1), notNullValue());
27
Animation anim =
AnimationUtils
.loadAnimation(new Activity(), R.anim.fade_in);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
AnimateDrawable.java
22
import android.view.animation.
AnimationUtils
;
63
AnimationUtils
.currentAnimationTimeMillis(),
/development/samples/ApiDemos/src/com/example/android/apis/view/
Animation2.java
26
import android.view.animation.
AnimationUtils
;
56
mFlipper.setInAnimation(
AnimationUtils
.loadAnimation(this,
58
mFlipper.setOutAnimation(
AnimationUtils
.loadAnimation(this,
62
mFlipper.setInAnimation(
AnimationUtils
.loadAnimation(this,
64
mFlipper.setOutAnimation(
AnimationUtils
.loadAnimation(this,
68
mFlipper.setInAnimation(
AnimationUtils
.loadAnimation(this,
70
mFlipper.setOutAnimation(
AnimationUtils
.loadAnimation(this,
74
mFlipper.setInAnimation(
AnimationUtils
.loadAnimation(this,
76
mFlipper.setOutAnimation(
AnimationUtils
.loadAnimation(this,
Animation3.java
26
import android.view.animation.
AnimationUtils
;
67
a.setInterpolator(
AnimationUtils
.loadInterpolator(this,
71
a.setInterpolator(
AnimationUtils
.loadInterpolator(this,
75
a.setInterpolator(
AnimationUtils
.loadInterpolator(this,
79
a.setInterpolator(
AnimationUtils
.loadInterpolator(this,
83
a.setInterpolator(
AnimationUtils
.loadInterpolator(this,
87
a.setInterpolator(
AnimationUtils
.loadInterpolator(this,
91
a.setInterpolator(
AnimationUtils
.loadInterpolator(this,
/external/replicaisland/src/com/replica/replicaisland/
DiaryActivity.java
27
import android.view.animation.
AnimationUtils
;
57
image.startAnimation(
AnimationUtils
.loadAnimation(this, R.anim.fade));
MainMenuActivity.java
36
import android.view.animation.
AnimationUtils
;
134
mButtonFlickerAnimation =
AnimationUtils
.loadAnimation(this, R.anim.button_flicker);
135
mFadeOutAnimation =
AnimationUtils
.loadAnimation(this, R.anim.fade_out);
136
mAlternateFadeOutAnimation =
AnimationUtils
.loadAnimation(this, R.anim.fade_out);
137
mFadeInAnimation =
AnimationUtils
.loadAnimation(this, R.anim.fade_in);
308
mStartButton.startAnimation(
AnimationUtils
.loadAnimation(this, R.anim.button_slide));
311
Animation anim =
AnimationUtils
.loadAnimation(this, R.anim.button_slide);
317
Animation anim =
AnimationUtils
.loadAnimation(this, R.anim.button_slide);
/frameworks/base/core/java/android/view/animation/
LayoutAnimationController.java
186
setAnimation(
AnimationUtils
.loadAnimation(context, resourceID));
231
setInterpolator(
AnimationUtils
.loadInterpolator(context, resourceID));
342
return
AnimationUtils
.currentAnimationTimeMillis() >
AnimationUtils.java
40
public class
AnimationUtils
{
63
* Locks
AnimationUtils
{@link #currentAnimationTimeMillis()} to a fixed value for the current
280
a =
AnimationUtils
.loadAnimation(c, com.android.internal.R.anim.slide_in_left);
282
a =
AnimationUtils
.loadAnimation(c, com.android.internal.R.anim.slide_in_right);
301
a =
AnimationUtils
.loadAnimation(c, com.android.internal.R.anim.slide_out_right);
303
a =
AnimationUtils
.loadAnimation(c, com.android.internal.R.anim.slide_out_left);
321
a =
AnimationUtils
.loadAnimation(c, com.android.internal.R.anim.slide_in_child_bottom);
Animation.java
404
setInterpolator(
AnimationUtils
.loadInterpolator(context, resID));
505
* {@link
AnimationUtils
#currentAnimationTimeMillis()} instead of
531
setStartTime(
AnimationUtils
.currentAnimationTimeMillis());
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
SettingsButton.java
28
import android.view.animation.
AnimationUtils
;
107
.setInterpolator(
AnimationUtils
.loadInterpolator(mContext,
135
mAnimator.setInterpolator(
AnimationUtils
.loadInterpolator(mContext,