Popwindow的频率还是比较高的,为了避免每次使用都单独创建浪费时间,浪费精力所以封装了一个通用的Popwindow 使用效果图
使用方法:
CustomPopupWindow customPopupWindow = new CustomPopupWindow.Builder()
.with(MainActivity.this)
.setContentView(R.layout.pop_view)
.setwidth(100)
.setheight(100)
.setBackGroudAlpha(MainActivity.this, 0.7f)
.setAnimationStyle(CustomPopupWindow.Builder.STYLE2)
.setFouse(true)
.setOutSideCancel(true)
.builder().showAsLaction(view, Gravity.CENTER, 0, 0);