OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:colorAnimator
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Camera2/src/com/android/camera/ui/
TouchCircleDrawable.java
189
final ValueAnimator
colorAnimator
=
191
colorAnimator
.setDuration(CIRCLE_ANIM_DURATION_MS);
192
colorAnimator
.setInterpolator(Gusterpolator.INSTANCE);
193
colorAnimator
.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
204
colorAnimator
.addListener(new AnimatorListener() {
240
colorAnimator
.start();
/cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java
171
public void startAnimation(ObjectAnimator bounceAnimator, ObjectAnimator
colorAnimator
) {
173
view.startColorAnimator(
colorAnimator
);
182
public void startColorAnimation(ValueAnimator
colorAnimator
){
183
view.startColorAnimator(
colorAnimator
);
194
public ValueAnimator
colorAnimator
;
202
colorAnimator
= ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE);
203
colorAnimator
.setDuration(1000);
204
colorAnimator
.setEvaluator(new ArgbEvaluator());
205
colorAnimator
.setRepeatCount(ValueAnimator.INFINITE);
206
colorAnimator
.setRepeatMode(ValueAnimator.REVERSE)
[
all
...]
ObjectAnimatorTest.java
92
final ObjectAnimator
colorAnimator
= ObjectAnimator.ofInt(object, property,
94
colorAnimator
.setDuration(1000);
95
colorAnimator
.setEvaluator(new ArgbEvaluator());
96
colorAnimator
.setRepeatCount(1);
97
colorAnimator
.setRepeatMode(ValueAnimator.REVERSE);
100
colorAnimator
.start();
104
startAnimation(mObjectAnimator,
colorAnimator
);
106
Integer i = (Integer)
colorAnimator
.getAnimatedValue();
119
final ObjectAnimator
colorAnimator
= ObjectAnimator.ofObject(object, property,
121
colorAnimator
.setDuration(1000)
[
all
...]
PropertyValuesHolderTest.java
265
ObjectAnimator
colorAnimator
= ObjectAnimator.ofPropertyValuesHolder(object,pVHolder);
266
colorAnimator
.setDuration(1000);
267
colorAnimator
.setEvaluator(new ArgbEvaluator());
268
colorAnimator
.setRepeatCount(ValueAnimator.INFINITE);
269
colorAnimator
.setRepeatMode(ValueAnimator.REVERSE);
273
startAnimation(objectAnimator,
colorAnimator
);
275
Integer i = (Integer)
colorAnimator
.getAnimatedValue();
420
final ObjectAnimator
colorAnimator
) throws Throwable {
423
mActivity.startAnimation(mObjectAnimator,
colorAnimator
);
/prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar
Completed in 78 milliseconds