PopupWindow自定义动画 在onDismiss执行动画无效的解决办法

前言

在PopupWindow中,可以通过setAnimationStyle给PopupWindow设置一个动画,但是这个动画只能针对对整个PopupWindow做动画,有比较大的局限性,可能不能满足需求。

setAnimationStyle局限性:

  1. 不能只对PopupWindow中的某个View做动画。
  2. 做平移动画时可能会遮挡Activity中的某些View。

比如下面这个:


微信图片选择

这个是微信图片选择页面,假设红色部分是一个PopupWindow(当然用其他方法实现也可以),我现在希望在显示PopupWindow时,整个PopupWindow从底部有一个往上平移的动画。如果采用setAnimationStyle的话,在平移过程中整个PopupWindow会把底部黑色部分盖住,界面就会很难看。消失动画也是同理,用setAnimationStyle几乎不可能实现。

要实现上面的PopupWindow动画,我们只能通过View动画去实现了,可以是补间动画,也可以是属性动画。ok,接下来就一步一步实现这个动画。

进入动画

进入动画比较容易,只需要在showAsDropDown或者showAtLocation中去执行一个动画就行。直接看代码:

public class CustomAnimatePopupWindow extends PopupWindow {

    private View contentView;
    private final int duration = 300;

    public CustomAnimatePopupWindow(Context context, int width, int height) {
        super();
        View view = LayoutInflater.from(context)
                .inflate(R.layout.pop_custom_animate, null);
        contentView = view.findViewById(R.id.content);
        setContentView(view);
        setWidth(width);
        setHeight(height);
        // 去掉默认的动画效果(showAsDropDown可能会自带默认动画)
        setAnimationStyle(R.style.custom_anim_pop);
        // 下面两行是为了让PopupWindow能够响应返回按键
        setFocusable(true);
        setBackgroundDrawable(new ColorDrawable(0x00000000));
    }

    @Override
    public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) {
        super.showAsDropDown(anchor, xoff, yoff, gravity);
        postAnimateIn(anchor);
    }

    @Override
    public void showAtLocation(View parent, int gravity, int x, int y) {
        super.showAtLocation(parent, gravity, x, y);
        postAnimateIn(parent);
    }

    private void postAnimateIn(View postView) {
        postView.postDelayed(new Runnable() {
            @Override
            public void run() {
                animateIn();
            }
        }, 1);
    }

    private void animateIn() {

        int height = contentView.getHeight();
        contentView.setTranslationY(height);
        contentView.animate().translationY(0).setDuration(duration)
                .setListener(null).start();

    }

}

注意到这里在执行动画时是通过postView.postDelayed来做消息分发。这是因为如果在showAsDropDown或者showAtLocation中,直接去start一个动画的话,我们获取到的contentView的高度可能为0。

Acitity中调用

public class MainActivity extends AppCompatActivity {

    private CustomAnimatePopupWindow customAnimatePopupWindow;
    private ViewGroup layoutBottom;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        layoutBottom = (ViewGroup) findViewById(R.id.layout_bottom);

        DisplayMetrics outMetrics = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(outMetrics);
        final int screenHeight = outMetrics.heightPixels;

        layoutBottom.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (customAnimatePopupWindow == null) {
                    customAnimatePopupWindow = new CustomAnimatePopupWindow(
                            MainActivity.this, 
                            ViewGroup.LayoutParams.MATCH_PARENT,
                            (int) (screenHeight * 0.7));
                }
                if (customAnimatePopupWindow.isShowing()) {
                    customAnimatePopupWindow.dismiss();
                } else {
                    customAnimatePopupWindow.showAsDropDown(layoutBottom, 0, 0);
                }
            }
        });
    }
}

这样我们就已经实现PopupWindow进入屏幕时的一个动画效果了。接下来实现PopupWindow消失时的动画效果。

消失动画

要想让PopupWindow在消失时执行一个动画,那么我们必须知道PopupWindow在什么时候消失,于是很自然的想到如下方法:

public class CustomAnimatePopupWindow extends PopupWindow {

    private View contentView;
    private final int duration = 300;

    public CustomAnimatePopupWindow(Context context, int width, int height) {
        super();
        // 省略部分代码
        setOnDismissListener(new OnDismissListener() {
            @Override
            public void onDismiss() {
                animateOut();
            }
        });
    }

    private void animateOut() {

        int height = contentView.getHeight();
        contentView.animate().translationY(height)
              .setDuration(duration).start();

    }
}

很不幸的是,这个方法没有任何效果。后来我想不如重写dismiss方法,在dismiss方法里面执行动画,发现依然没有效果。如下:

public class CustomAnimatePopupWindow extends PopupWindow {
    @Override
    public void dismiss() {
        super.dismiss();
        animateOut();
    }
    
    private void animateOut() {

        int height = contentView.getHeight();
        contentView.animate().translationY(height)
              .setDuration(duration).start();

    }
}

看了PopupWindow源码,应该是在dismiss的时候会取消所有动画。如下,decorView.cancelTransitions()会取消所有正在执行或者即将执行的transitions(动画)。onDismiss其实是在dismiss中调用的,所以在onDismiss中执行动画同样没有效果。

public class PopupWindow {
    public void dismiss() {
        // 省略部分源码      
        // Ensure any ongoing or pending transitions are canceled.
        decorView.cancelTransitions();
    }
}

既然在dismiss中执行动画没有效果,那我们可以先执行动画,等动画结束的时候再执行dismiss方法。代码如下:

public class CustomAnimatePopupWindow extends PopupWindow {
    /**
     * 直接关闭PopupWindow,没有动画效果
     */
    public void superDismiss() {
        super.dismiss();
    }

    @Override
    public void dismiss() {
        animateOut(new AnimatorListenerAdapter() {
            @Override
            public void onAnimationEnd(Animator animation) {
                superDismiss();
            }
        });
    }

    private void animateOut(final Animator.AnimatorListener listener) {

        int height = contentView.getHeight();
        contentView.animate().translationY(height).setListener(new AnimatorListenerAdapter() {
            @Override
            public void onAnimationEnd(Animator animation) {
                listener.onAnimationEnd(animation);
                contentView.animate().setListener(null);
            }
        }).setDuration(duration).start();

    }
}

动画终于可以执行了。另外,为了使用方便,还需要提供一个接口,在消失动画开始执行的时候可以有一个回调。

最终实现

CustomAnimatePopupWindow完整代码如下:


import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.content.Context;
import android.graphics.drawable.ColorDrawable;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.PopupWindow;

public class CustomAnimatePopupWindow extends PopupWindow {

    private View contentView;
    private final int duration = 300;
    private OnCustomDismissListener onCustomDismissListener;

    public CustomAnimatePopupWindow(Context context, int width, int height) {
        super();
        View view = LayoutInflater.from(context).inflate(R.layout.pop_custom_animate, null);
        contentView = view.findViewById(R.id.content);
        setContentView(view);
        setWidth(width);
        setHeight(height);
        // 去掉默认的动画效果(showAsDropDown可能会自带默认动画)
        setAnimationStyle(R.style.custom_anim_pop);
        // 下面两行是为了让PopupWindow能够相应返回按键
        setFocusable(true);
        setBackgroundDrawable(new ColorDrawable(0x00000000));
    }

    @Override
    public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) {
        super.showAsDropDown(anchor, xoff, yoff, gravity);
        postAnimateIn(anchor);
    }

    @Override
    public void showAtLocation(View parent, int gravity, int x, int y) {
        super.showAtLocation(parent, gravity, x, y);
        postAnimateIn(parent);
    }

    private void postAnimateIn(View postView) {
        postView.postDelayed(new Runnable() {
            @Override
            public void run() {
                animateIn();
            }
        }, 1);
    }

    private void animateIn() {

        int height = contentView.getHeight();
        contentView.setTranslationY(height);
        contentView.animate().translationY(0).setDuration(duration)
                .setListener(null).start();

    }

    /**
     * 直接关闭PopupWindow,没有动画效果
     */
    public void superDismiss() {
        super.dismiss();
        if (onCustomDismissListener != null) {
            onCustomDismissListener.onDismiss();
        }
    }

    @Override
    public void dismiss() {
        animateOut(new AnimatorListenerAdapter() {
            @Override
            public void onAnimationEnd(Animator animation) {
                superDismiss();
            }
        });
        if (onCustomDismissListener != null) {
            onCustomDismissListener.onStartDismiss();
        }
    }

    private void animateOut(final Animator.AnimatorListener listener) {

        int height = contentView.getHeight();
        contentView.animate().translationY(height).setListener(new AnimatorListenerAdapter() {
            @Override
            public void onAnimationEnd(Animator animation) {
                listener.onAnimationEnd(animation);
                contentView.animate().setListener(null);
            }
        }).setDuration(duration).start();

    }

    public void setOnCustomDismissListener(OnCustomDismissListener onCustomDismissListener) {
        this.onCustomDismissListener = onCustomDismissListener;
    }

    public interface OnCustomDismissListener {

        /**
         * 开始消失,这个时候PopupWindow还在,只是在执行消失动画
         */
        public void onStartDismiss();

        /**
         * 完全消失
         */
        public void onDismiss();
    }
}

另外,还有一些需要处理,如半透明效果。最终效果:


最终效果

点我下载源码

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 157,298评论 4 360
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 66,701评论 1 290
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 107,078评论 0 237
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,687评论 0 202
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,018评论 3 286
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,410评论 1 211
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,729评论 2 310
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,412评论 0 194
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,124评论 1 239
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,379评论 2 242
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 31,903评论 1 257
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,268评论 2 251
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 32,894评论 3 233
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,014评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,770评论 0 192
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,435评论 2 269
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,312评论 2 260

推荐阅读更多精彩内容