首页 > 代码库 > Android实战简易教程-第七十二枪(PopupWindow浮动窗)

Android实战简易教程-第七十二枪(PopupWindow浮动窗)

PopupWindow的官方定义例如以下:

A popup window that can be used to display an arbitrary view. The popup window is a floating container that appears on top of the current activity.

也就是说它是一个浮动在当前界面上方而且能够显示在任何位置的View,前面的章节我们学习了弹出框,各式各样的,那么PopupWindow应该有两点和弹出框不同,一是PopupWindow必须指定宽高属性,而弹出框则不是必须指定;二是PopupWindow必须指定其布局文件。

以下总结一下经常用法:

方法

类型

说明

PopupWindow(Context context)

构造方法

Android实战简易教程-第七十二枪(PopupWindow浮动窗)