PopupWindow是Android上自定义弹出窗口,使用起来很方便。
PopupWindow的构造函数为
public PopupWindow(View contentView, int width, int height, boolean focusable)
contentView为要显示的view,width和imageData为宽和高,值为像素值,
也可以是MATCHT_PARENT或者WRAP_CONTENT。
focusable加粗样式为是否可以获得焦点,这是一个很重要的参数,
也可以通过setFocusable(boolean focusable)来设置.
如果focusable为false:在一个Activity弹出一个PopupWindow,按返回键,由于PopupWindow没有焦点,会直接退出Activity。
如果focusable为true,PopupWindow弹出后,所有的触屏和物理按键都有PopupWindows处理。
如果PopupWindow中有Editor的话,focusable要为true。
主界面的layout为:
PopupWindow的layout为:
Activity的代码为:
public class MainActivity extends Activity {
private Button mButton;
private PopupWindow mPopupWindow;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
View popupView = getLayoutInflater().inflate(R.layout.layout_popupwindow, null);
mPopupWindow = new PopupWindow(popupView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
设置PopupWindow是否能响应点击事件
mPopupWindow.setTouchable(true);
//设置PopupWindow是否能响应外部点击事件
mPopupWindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));
mButton = (Button) findViewById(R.id.btn_test_popupwindow);
mButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mPopupWindow.showAsDropDown(v);
}
});
}
}
这三行代码
mPopupWindow.setTouchable(true);
mPopupWindow.setOutsideTouchable(true);
mPopupWindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));
的作用是点击空白处的时候PopupWindow会消失
mPopupWindow.showAsDropDown(v);
这一行代码将PopupWindow以一种向下弹出的动画的形式显示出来
public void showAsDropDown(View anchor, int xoff, int yoff)
这个函数的第一个参数为一个View,我们这里是一个Button,那么PopupWindow会在这个Button下面显示,xoff,yoff为显示位置的偏移。
很多时候我们把PopupWindow用作自定义的菜单,需要一个从底部向上弹出的效果,这就需要为PopupWindow添加动画。
在工程res下新建anim文件夹,在anim文件夹先新建两个xml文件
menu_bottombar_in.xml
menu_bottombar_out.xml
在res/value/styles.xml添加一个sytle
设置样式
mPopupWindow.setAnimationStyle(R.style.anim_menu_bottombar);
public void backgroundAlpha(float bgAlpha)
{
WindowManager.LayoutParams lp = ((Activity)getContext()).getWindow().getAttributes();
lp.alpha = bgAlpha; //0.0-1.0
((Activity)getContext()).getWindow().setAttributes(lp);
}
//消失时还原
mPopupWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {
@Override
public void onDismiss() {
backgroundAlpha(1f);
}
});
//出现时将背景透明化
mbuton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mPopupWindow.showAsDropDown(v);
backgroundAlpha(0.3f);
}
});
参考 张晴天 的博客
public static void popwindowShowOnView(View v, PopupWindow popupWindow) {
int widthM = View.MeasureSpec.makeMeasureSpec(1 << 30 - 1,
View.MeasureSpec.AT_MOST);
int heightM = View.MeasureSpec.makeMeasureSpec(1 << 30 - 1,
View.MeasureSpec.AT_MOST);
popupWindow.getContentView().measure(widthM, heightM);
int measuredWidth = popupWindow.getContentView().getMeasuredWidth();
int measuredHeight = popupWindow.getContentView().getMeasuredHeight();
int width = v.getWidth();
int xOff = (width - measuredWidth) / 2;
int[] location = new int[2];
v.getLocationOnScreen(location);
popupWindow.showAtLocation(v, Gravity.NO_GRAVITY, location[0] + xOff , location[1] - measuredHeight - 5);
}