OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:alphaAnim
(Results
1 - 8
of
8
) sorted by null
/development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java
210
AlphaAnimation
alphaAnim
= new AlphaAnimation(mCurrentAlpha, remove ? 0 : 1);
213
set.addAnimation(
alphaAnim
);
248
AlphaAnimation
alphaAnim
= new AlphaAnimation(mCurrentAlpha, mCurrentAlpha);
251
set.addAnimation(
alphaAnim
);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TransformsAndAnimationsActivity.java
116
final AlphaAnimation
alphaAnim
= new AlphaAnimation(1, 0);
117
alphaAnim
.setDuration(1000);
118
alphaAnim
.setRepeatCount(Animation.INFINITE);
119
alphaAnim
.setRepeatMode(Animation.REVERSE);
129
button1.startAnimation(
alphaAnim
);
130
button2.startAnimation(
alphaAnim
);
131
button3.startAnimation(
alphaAnim
);
133
button1a.startAnimation(
alphaAnim
);
134
button2a.startAnimation(
alphaAnim
);
135
button3a.startAnimation(
alphaAnim
);
[
all
...]
/development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimatorEvents.java
135
ObjectAnimator
alphaAnim
= ObjectAnimator.ofFloat(ball, "alpha", 1f, .5f).
138
alphaSeq.play(
alphaAnim
);
/frameworks/base/core/java/com/android/internal/widget/
SlidingTab.java
285
AlphaAnimation
alphaAnim
= new AlphaAnimation(0.0f, 1.0f);
286
alphaAnim
.setDuration(ANIM_TARGET_TIME);
287
target.startAnimation(
alphaAnim
);
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java
[
all
...]
Launcher.java
[
all
...]
Workspace.java
[
all
...]
/packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java
[
all
...]
Completed in 163 milliseconds