博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android----PopupWindow
阅读量:6503 次
发布时间:2019-06-24

本文共 5559 字,大约阅读时间需要 18 分钟。

Android的对话框有两种:PopupWindow和AlertDialog。它们的不同点在于:

  AlertDialog的位置固定,而PopupWindow的位置可以随意
  AlertDialog是非阻塞线程的,而PopupWindow是阻塞线程的

 

PopupWindow的位置按照有无偏移分,可以分为偏移和无偏移两种;

按照参照物的不同,可以分为相对于某个控件(Anchor锚)和相对于父控件。

具体如下:

showAsDropDown(View anchor):相对某个控件的位置(正左下方),无偏移
showAsDropDown(View anchor, int xoff, int yoff):相对某个控件的位置,有偏移
showAtLocation(View parent, int gravity, int x, int y):相对于父控件的位置(例如正中央Gravity.CENTER,下方Gravity.BOTTOM等),可以设置偏移或无偏移

 

具体的Demo:

1 public class SearchPop{  2     private PopupWindow pop;  3     private Context context;  4     // 列表弹窗的间隔  5     protected final int LIST_PADDING = 10;  6     // 实例化一个矩形  7     private Rect mRect = new Rect();  8     // 坐标的位置(x,y)  9     private final int[] mLocation = new int[2]; 10     // 位置不在中心 11     private int popupGravity = Gravity.NO_GRAVITY; 12     // 弹窗子类项选中时的回调监听接口 13     private OnItemClickListener mItemListener; 14     // 定义列表对象 15     private ListView mListView; 16     // 定义列表子类项 数据集合 17     private ArrayList
mData = new ArrayList
(); 18 19 private void setData(ArrayList
mData){ 20 if(mData != null && !mData.isEmpty()) 21 this.mData = mData; 22 else 23 this.mData = new ArrayList
(); 24 } 25 26 public SearchPop(Context context, ArrayList
mData) { 27 this.setData(mData); 28 this.context = context; 29 View view = LayoutInflater.from(context).inflate(R.layout.popup_window, null); 30 pop = new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); 31 pop.setContentView(view); 32 // 设置可以获取焦点 33 pop.setFocusable(true); 34 // 设置弹窗内可点击 35 pop.setTouchable(true); 36 // 设置弹窗外可点击 37 pop.setOutsideTouchable(true); 38 // 设置popupWindows的宽度和高度 39 pop.setWidth(LayoutParams.WRAP_CONTENT); 40 pop.setHeight(LayoutParams.WRAP_CONTENT); 41 // 设置背景 42 // 这个是为了点击“返回Back”也能使其消失,并且并不会影响你的背景(很神奇的) 43 pop.setBackgroundDrawable(new BitmapDrawable()); 44 // 设置popupWindow的布局界面 45 46 setupView(); 47 } 48 49 private void setupView() { 50 mListView = (ListView) pop.getContentView().findViewById(R.id.lvPopupWindow); 51 mListView.setOnItemClickListener(new AdapterView.OnItemClickListener() { 52 @Override 53 public void onItemClick(AdapterView
parent, View view, int position, long id) { 54 //点击item,popupWindow消失 55 pop.dismiss(); 56 if(mItemListener != null) 57 mItemListener.onItemClick(mData.get(position), position); 58 } 59 }); 60 } 61 62 public void showPopupWindow(View view) { 63 // 获得点击屏幕的位置坐标 64 view.getLocationOnScreen(mLocation); 65 // 设置矩形大小 66 mRect.set(mLocation[0], mLocation[1], mLocation[0] + view.getWidth(), 67 mLocation[1] + view.getHeight()); 68 // 显示popupWindow的位置 69 pop.showAtLocation(view, popupGravity, LIST_PADDING, mLocation[1]+LIST_PADDING*2); 70 mListView.setAdapter(myAdapter); 71 } 72 73 private BaseAdapter myAdapter = new BaseAdapter() { 74 @Override 75 public View getView(int position, View convertView, ViewGroup parent) { 76 TextView tvText = null; 77 convertView = LayoutInflater.from(context).inflate(R.layout.popup_window_item, null); 78 tvText = (TextView) convertView.findViewById(R.id.tvPopupWindowItem); 79 String item = getItem(position); 80 tvText.setText(item); 81 return convertView; 82 } 83 @Override 84 public long getItemId(int position) { 85 return position; 86 } 87 @Override 88 public String getItem(int position) { 89 return mData.get(position); 90 } 91 @Override 92 public int getCount() { 93 return mData.size(); 94 } 95 }; 96 97 /** 98 * 根据位置获得item 99 * @param position100 * @return101 */102 public String getAction(int position){103 if(position < 0 || position>mData.size()){104 return null;105 }106 return mData.get(position);107 }108 109 /**110 * 设置监听事件111 * @param mItemListener112 */113 public void setItemClickListener(OnItemClickListener mItemListener){114 this.mItemListener = mItemListener;115 }116 117 /**118 * 回调接口119 * @author Administrator120 *121 */122 public static interface OnItemClickListener{123 void onItemClick(String item , int position);124 }125 126 }

 

 

然后,在对button的事件监听中,调用showPopupWindow()方法,来实例化这个popupwindow.

在回调里面,写这个popupWindow的子类项点击事件的处理方法

pop.setItemClickListener(new OnItemClickListener){

  public void onItemClick(String item, int position){

    //点击 如何处理

  }

}

 

 

 

注意事项:

1、构造popupwindow时,

  pop = new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

一定要给出这个popupWindow的宽和高。 官方文档说明的很清楚,当不传递width,height参数时,构造出来的popupWindow的dimension只有0*0

 

2、在popupWindow中显示listview

1 pop.setFocusable(true)

如果不设置, 则点击不到listview

 

3、点击popupWindow退出,另外还想点击屏幕其他位置退出,点击“back”键退出的话:

//设置外部可以点击pop.setOutsideTouchAble(true);// 这个是为了点击“返回Back”也能使其消失,并且并不会影响你的背景(很神奇的)pop.setBackgroundDrawable(new BitmapDrawable());

 

 

 

转载于:https://www.cnblogs.com/android-madan/p/3458976.html

你可能感兴趣的文章
复杂度归纳--小结
查看>>
PHP学习笔记 第八讲 Mysql.简介和创建新的数据库
查看>>
【git】git入门之把自己的项目上传到github
查看>>
js获取鼠标位置
查看>>
2016.8.11 DataTable合并及排除重复方法
查看>>
php 魔术方法 说明
查看>>
Mysql
查看>>
POJ-1860-Currency Exchange
查看>>
跨越企业的“中等收入陷阱”
查看>>
Android 开发者必知的开发资源
查看>>
软件工程技术基础-(软件复用技术)
查看>>
给django视图类添加装饰器
查看>>
简述 clearfix 的原理
查看>>
【Project Euler】530 GCD of Divisors 莫比乌斯反演
查看>>
luogu P1280 尼克的任务 序列DP
查看>>
iphone UIView的一些基本方法理解
查看>>
sys.check_constraints
查看>>
vue问题
查看>>
ThinkPHP 框架学习
查看>>
css3箭头效果
查看>>