Java Code Examples for android.view.View#setAnimation()

The following examples show how to use android.view.View#setAnimation() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AnimatorProxy.java    From zen4android with MIT License 6 votes vote down vote up
private void invalidateAfterUpdate() {
    View view = mView.get();
    if (view == null) {
        return;
    }
    View parent = (View)view.getParent();
    if (parent == null) {
        return;
    }

    view.setAnimation(this);

    final RectF after = mAfter;
    computeRect(after, view);
    after.union(mBefore);

    parent.invalidate(
            (int) FloatMath.floor(after.left),
            (int) FloatMath.floor(after.top),
            (int) FloatMath.ceil(after.right),
            (int) FloatMath.ceil(after.bottom));
}
 
Example 2
Source File: ParallaxListViewHelper.java    From UltimateAndroid with Apache License 2.0 5 votes vote down vote up
@Override
protected void translatePreICS(View view, float offset) {
	TranslateAnimation ta = new TranslateAnimation(0, 0, offset, offset);
	ta.setDuration(0);
	ta.setFillAfter(true);
	view.setAnimation(ta);
	ta.start();
}
 
Example 3
Source File: ParallaxListView$ParallaxedListView.java    From MiBandDecompiled with Apache License 2.0 5 votes vote down vote up
protected void translatePreICS(View view, float f)
{
    TranslateAnimation translateanimation = new TranslateAnimation(0.0F, 0.0F, f, f);
    translateanimation.setDuration(0L);
    translateanimation.setFillAfter(true);
    view.setAnimation(translateanimation);
    translateanimation.start();
}
 
Example 4
Source File: AvlDirectCall.java    From iGap-Android with GNU Affero General Public License v3.0 5 votes vote down vote up
private void getAnimation(View view, int start) {

        Animation fadeIn = new AlphaAnimation(0, 1);
        fadeIn.setStartOffset(start);
        // fadeIn.setDuration(600);
        // fadeIn.setRepeatCount(Animation.REVERSE);
        fadeIn.setRepeatCount(Animation.INFINITE);

        view.setAnimation(fadeIn);
    }
 
Example 5
Source File: ApplozicAudioRecordAnimation.java    From Applozic-Android-SDK with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public static ApplozicAudioRecordAnimation wrap(View view) {
    ApplozicAudioRecordAnimation proxy = PROXIES.get(view);
    Animation animation = view.getAnimation();
    if (proxy == null || proxy != animation && animation != null) {
        proxy = new ApplozicAudioRecordAnimation(view);
        PROXIES.put(view, proxy);
    } else if (animation == null) {
        view.setAnimation(proxy);
    }
    return proxy;
}
 
Example 6
Source File: ViewAnimationUtils.java    From android-mvvm-architecture with Apache License 2.0 5 votes vote down vote up
public static void scaleAnimateView(View view) {
    ScaleAnimation animation =
            new ScaleAnimation(
                    1.15f, 1, 1.15f, 1,
                    Animation.RELATIVE_TO_SELF, 0.5f,
                    Animation.RELATIVE_TO_SELF, 0.5f);

    view.setAnimation(animation);
    animation.setDuration(100);
    animation.start();
}
 
Example 7
Source File: SearchAnimator.java    From MeiZiNews with MIT License 5 votes vote down vote up
@TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)
public static void fadeOutAnimation(final View view, int duration) {

    Animation anim = new AlphaAnimation(1.0f, 0.0f);
    anim.setInterpolator(new AccelerateDecelerateInterpolator());
    anim.setDuration(duration);

    view.setAnimation(anim);
    view.setVisibility(View.GONE);
}
 
Example 8
Source File: AnimatorProxy.java    From MiBandDecompiled with Apache License 2.0 5 votes vote down vote up
private AnimatorProxy(View view)
{
    e = 1.0F;
    k = 1.0F;
    l = 1.0F;
    setDuration(0L);
    setFillAfter(true);
    view.setAnimation(this);
    b = new WeakReference(view);
}
 
Example 9
Source File: ParallaxListViewHelper.java    From UltimateAndroid with Apache License 2.0 5 votes vote down vote up
@Override
protected void translatePreICS(View view, float offset) {
	TranslateAnimation ta = new TranslateAnimation(0, 0, offset, offset);
	ta.setDuration(0);
	ta.setFillAfter(true);
	view.setAnimation(ta);
	ta.start();
}
 
Example 10
Source File: ViewAnimationSetBuilder.java    From react-native-navigation with MIT License 5 votes vote down vote up
public ViewAnimationSetBuilder add(View view, Animation animation) {
    views.add(view);
    pendingAnimations.add(animation);
    animation.setAnimationListener(this);
    view.setAnimation(animation);
    return this;
}
 
Example 11
Source File: ParallaxListView.java    From MiBandDecompiled with Apache License 2.0 5 votes vote down vote up
protected void translatePreICS(View view, float f1)
{
    TranslateAnimation translateanimation = new TranslateAnimation(0.0F, 0.0F, f1, f1);
    translateanimation.setDuration(0L);
    translateanimation.setFillAfter(true);
    view.setAnimation(translateanimation);
    translateanimation.start();
}
 
Example 12
Source File: AnimationUtil.java    From Socket.io-FLSocketIM-Android with MIT License 5 votes vote down vote up
/**缩放
 * @param view
 * @param from 缩放开始比例0-1.0
 * @param to 缩放结束比例0-1.0
 * @param w
 * @param h
 */
public static void setViewScale(View view, float from, float to, int w, int h) {
    if (isAnimation) {
        ScaleAnimation animation = new ScaleAnimation(from, to, from, to,
                w/2, h/2);
        animation.setDuration(200);
        animation.setFillAfter(true);
        view.clearAnimation();
        view.setAnimation(animation);
        animation = null;
        System.gc();
    }
}
 
Example 13
Source File: AnimatorProxy.java    From zen4android with MIT License 4 votes vote down vote up
private AnimatorProxy(View view) {
    setDuration(0); //perform transformation immediately
    setFillAfter(true); //persist transformation beyond duration
    view.setAnimation(this);
    mView = new WeakReference<View>(view);
}
 
Example 14
Source File: AnimationUtils.java    From social-app-android with Apache License 2.0 4 votes vote down vote up
public static AlphaAnimation hideViewByAlpha(final View v) {
    AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0);
    alphaAnimation.setDuration(ALPHA_SHORT_DURATION);
    v.setAnimation(alphaAnimation);
    return alphaAnimation;
}
 
Example 15
Source File: ArcMenu.java    From UltimateAndroid with Apache License 2.0 4 votes vote down vote up
private Animation bindItemAnimation(final View child, final boolean isClicked, final long duration) {
    Animation animation = createItemDisapperAnimation(duration, isClicked);
    child.setAnimation(animation);

    return animation;
}
 
Example 16
Source File: AnimatorProxy.java    From UltimateAndroid with Apache License 2.0 4 votes vote down vote up
private AnimatorProxy(View view) {
    setDuration(0); //perform transformation immediately
    setFillAfter(true); //persist transformation beyond duration
    view.setAnimation(this);
    mView = new WeakReference<View>(view);
}
 
Example 17
Source File: RayMenu.java    From UltimateAndroid with Apache License 2.0 4 votes vote down vote up
private Animation bindItemAnimation(final View child, final boolean isClicked, final long duration) {
	Animation animation = createItemDisapperAnimation(duration, isClicked);
	child.setAnimation(animation);

	return animation;
}
 
Example 18
Source File: AnimatorProxy.java    From KJFrameForAndroid with Apache License 2.0 4 votes vote down vote up
private AnimatorProxy(View view) {
    setDuration(0); // perform transformation immediately
    setFillAfter(true); // persist transformation beyond duration
    view.setAnimation(this);
    mView = new WeakReference<View>(view);
}
 
Example 19
Source File: AnimatorProxy.java    From zhangshangwuda with Apache License 2.0 4 votes vote down vote up
private AnimatorProxy(View view) {
    setDuration(0); //perform transformation immediately
    setFillAfter(true); //persist transformation beyond duration
    view.setAnimation(this);
    mView = new WeakReference<View>(view);
}
 
Example 20
Source File: ViewUtils.java    From DevUtils with Apache License 2.0 2 votes vote down vote up
/**
 * 设置动画
 * @param view      {@link View}
 * @param animation {@link Animation}
 * @return {@link View}
 */
public static View setAnimation(final View view, final Animation animation) {
    if (view != null) view.setAnimation(animation);
    return view;
}