/** * Created by twy on 2017/7/7. */public class MyPopWindow extends PopupWindow {    public MyPopWindow(final Activity context,View view){        LayoutInflater inflater = (LayoutInflater) context                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);        int h = context.getWindowManager().getDefaultDisplay().getHeight();        int w = context.getWindowManager().getDefaultDisplay().getWidth();        this.setContentView(view);        this.setWidth(ViewGroup.LayoutParams.MATCH_PARENT);        this.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);        this.setFocusable(true);        this.setOutsideTouchable(true);        this.update();        ColorDrawable dw = new ColorDrawable(-00000);        this.setBackgroundDrawable(dw);        this.setAnimationStyle(R.style.AnimationPreview);    }    @Override    public void showAsDropDown(View anchor) {        if (Build.VERSION.SDK_INT == 24) {            Rect rect = new Rect();            anchor.getGlobalVisibleRect(rect);            int h = anchor.getResources().getDisplayMetrics().heightPixels - rect.bottom;            setHeight(h);        }        super.showAsDropDown(anchor);    }}

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Java/Android回调——由一段Bmob查询操作
  2. Part 1:Multi-threading Android Apps fo
  3. android 判断联网类型
  4. cross compile busybox for android
  5. android 书架效果实现
  6. Android简单计算器界面实现
  7. Android Studio计算器 app
  8. Android GMS认证项总结
  9. Android中数据库升级
  10. android 获取当前设备的ip地址 mac地址