Android悬浮弹窗之PopupWindow

PopupWindow的显示有两种:

  1. 一种是基于锚点的相对显示;
/**
  * 下拉方式显示
  * @param anchor the view on which to pin the popup window(锚点控件,popupWindow的参照系)
  * @param xoff A horizontal offset from the anchor in pixels(相对锚点的水平偏移量)
  * @param yoff A vertical offset from the anchor in pixels(相对锚点的的垂直偏移量)
  * @param gravity Alignment of the popup relative to the anchor(锚点控件与popupwindow对齐的方式)
  */
public void showAsDropDown(View anchor, int xoff, int yoff, int gravity)
showAsDropDown

上效果图显示代码如下:

int margin = tvAnchor.getHeight();//外边距,为了让演示效果添加这个值
mPopupWindow.showAsDropDown(tvAnchor, margin, margin, Gravity.RIGHT);

这里的gravity这是用于指定popupWindow与anchor锚点View的左边届对齐还是右边界对齐(Gravity.LEFT/Gravity.RIGHT)
在通过锚点View以及对齐方式确定了popupWindow位置后,再通过yoff/xoff对位于anchor锚点View的下方的确定位置的popupWindow进行水平以及垂直方向的平移;

  1. 另外一种则是基于整个window的DecorView内部指定对齐方向和以对齐边界为起点的偏移量确定我们popupWindow位置的显示。
/**
  * @param parent – a parent view to get the View.getWindowToken() token from(用于获取提供WindowToken<在wms与Application间通信使用>)
  * @param gravity – the gravity which controls the placement of the popup window(popupWindow的对齐方式)
  * @param x – the popup's x location offset(popupWindow在X轴的偏移量)
  * @param y – the popup's y location offset(popupWindow在y轴的偏移量)
  */
public void showAtLocation(View parent, int gravity, int x, int y)
showAtLocation

如上图效果:
X = tvAnchor.Left + margin
Y = statusBarHeight + actionBarHeight + tvAnchor.Bottom + margin
gravity = Gravity.LEFT | Gravity.TOP
上效果图显示代码如下:

int margin = tvAnchor.getHeight();//外边距,为了让演示效果添加这个值
mPopupWindow.showAtLocation(tvAnchor, Gravity.LEFT | Gravity.BOTTOM, tvAnchor.getLeft() + margin, tvAnchor.getBottom() + supportActionBar.getHeight() + statusBarHeight + margin);

过渡动画:

  1. 进场动画
public void setEnterTransition(@Nullable Transition enterTransition)
  1. 退场动画
public void setExitTransition(@Nullable Transition exitTransition)
  1. 动画样式,可以配置显示以及隐藏的动画等
/**
  *如果当在显示的时候设置动画效果,则将会在下次展示的时候才会生效或者调用一次update()方法后才会生效;
  *@param animationStyle : Set to -1 for the default animation, 0 for no animation, or a resource identifier for an explicit animation.(-1:默认动画;0:无动画;具体动画资源ID)
  */
public void setAnimationStyle(int animationStyle)

Slide过渡动画效果演示


Slide过渡动画效果

demo部分主要代码:

View tvItem1 = popupView.findViewById(R.id.tv_item1);
tvItem1.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {     
            Toast.makeText(getApplicationContext(), "点击popupWindow里面的item", Toast.LENGTH_SHORT).show();
            mPopupWindow.dismiss();
            }
        });
    mPopupWindow = new PopupWindow(popupView, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT, true);
    mPopupWindow.setWidth(tvAnchor.getWidth() / 2);//设置宽度
    mPopupWindow.setOutsideTouchable(true);//是否接收窗口外部触摸事件
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { 
        Slide slide = new Slide();
        slide.setDuration(300);
        slide.setSlideEdge(Gravity.TOP);
        mPopupWindow.setEnterTransition(slide);
        mPopupWindow.setExitTransition(slide);
    }
}
//mPopupWindow.setAnimationStyle(R.style.MyPopupWindow);
//getActionBar().getHeight()
int height = -1;
int statusBarHeight = -1;
int margin = tvAnchor.getHeight();
ActionBar supportActionBar = getSupportActionBar();
int resId = getResources().getIdentifier("status_bar_height", "dimen", "android");
if (resId > 0) {  
    statusBarHeight = getResources().getDimensionPixelOffset(resId);
}
if (supportActionBar != null) {
    height = supportActionBar.getHeight();
}
Log.e("test", " tvAnchor.getTop() = " + tvAnchor.getTop() + " tvAnchor.getHeight() = " + tvAnchor.getHeight() + " getSupportActionBar().getHeight() = " + height
                        + " statusBarHeight = " + statusBarHeight);
//mPopupWindow.showAtLocation(tvAnchor, Gravity.LEFT | Gravity.BOTTOM, tvAnchor.getLeft() + margin, tvAnchor.getBottom() + supportActionBar.getHeight() + statusBarHeight + margin);
mPopupWindow.showAsDropDown(tvAnchor, margin, margin, Gravity.RIGHT);

Android官方文档 : https://developer.android.com/reference/android/widget/PopupWindow
想了解更多关于过渡动画见知识:https://developer.android.com/reference/android/transition/Transition

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

推荐阅读更多精彩内容