OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:animationId
(Results
1 - 8
of
8
) sorted by null
/external/glide/library/src/main/java/com/bumptech/glide/request/animation/
ViewAnimationFactory.java
21
public ViewAnimationFactory(Context context, int
animationId
) {
22
this(new ResourceAnimationFactory(context,
animationId
));
66
private final int
animationId
;
68
public ResourceAnimationFactory(Context context, int
animationId
) {
70
this.
animationId
=
animationId
;
75
return AnimationUtils.loadAnimation(context,
animationId
);
/external/glide/library/src/main/java/com/bumptech/glide/
DrawableOptions.java
60
* @param
animationId
The id of the Animation to use if no placeholder is set.
64
GenericRequestBuilder<?, ?, ?, ?> crossFade(int
animationId
, int duration);
DrawableRequestBuilder.java
270
public DrawableRequestBuilder<ModelType> crossFade(int
animationId
, int duration) {
271
super.animate(new DrawableCrossFadeFactory<GlideDrawable>(context,
animationId
,
298
public DrawableRequestBuilder<ModelType> animate(int
animationId
) {
299
super.animate(
animationId
);
GifRequestBuilder.java
260
public GifRequestBuilder<ModelType> crossFade(int
animationId
, int duration) {
261
super.animate(new DrawableCrossFadeFactory<GifDrawable>(context,
animationId
,
279
public GifRequestBuilder<ModelType> animate(int
animationId
) {
280
super.animate(
animationId
);
BitmapRequestBuilder.java
329
public BitmapRequestBuilder<ModelType, TranscodeType> animate(int
animationId
) {
330
super.animate(
animationId
);
GenericRequestBuilder.java
368
* @param
animationId
The resource id of the animation to run
371
public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate(int
animationId
) {
372
return animate(new ViewAnimationFactory<TranscodeType>(context,
animationId
));
/external/replicaisland/src/com/replica/replicaisland/
SpriteAnimation.java
32
public SpriteAnimation(int
animationId
, int frameCount) {
38
setPhase(
animationId
);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java
565
int
animationId
= 0;
570
animationId
= Bridge.getResourceId(ResourceType.ANIMATOR, animationName);
576
animationId
= context.getLayoutlibCallback().getResourceId(
583
Animator anim = AnimatorInflater.loadAnimator(context,
animationId
);
[
all
...]
Completed in 199 milliseconds