概述:
PopupWindow这个类用来实现一个弹出框,可以使用任意布局的View作为其内容,这个弹出框是悬浮在当前activity之上的。
//得到跳转视图
View view=getLayoutInflater().inflate(R.layout.toast_layout,null);
final PopupWindow pw =newPopupWindow(view);
概述:
PopupWindow这个类用来实现一个弹出框,可以使用任意布局的View作为其内容,这个弹出框是悬浮在当前activity之上的。
//得到跳转视图
View view=getLayoutInflater().inflate(R.layout.toast_layout,null);
final PopupWindow pw =newPopupWindow(view);