在开发项目中会经常遇到弹窗选择的情况,这时就会用到PopupWindow,PopupWindow的用法比较简单,但不熟悉的情况下会遇到一些问题,可能会花不短的时间来处理,这里简单总结一下可能会遇到的问题。见下面代码。
PopupWindow
final PopupWindow popupWindow =new PopupWindow(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.WRAP_CONTENT);
popupWindow.setContentView(LayoutInflater.from(this).inflate(R.layout.popup_window, null));
popupWindow.setBackgroundDrawable(newColorDrawable(ContextCompat.getColor(this,R.color.half)));//设置背景色,需要设置,不设置可能会造成返回键不起作用
//popupWindow.setBackgroundDrawable(ContextCompat.getDrawable(this,R.mipmap.ic_launcher));//设置背景图
popupWindow.setFocusable(false);//物理键是否响应,为true时,点返回键 //popupWindow消失,为false时,点返回键activity消失。popupWindow.setOutsideTouchable(true);//点击popupWindow外面消失popupWindow.setAnimationStyle(R.style.PopupWindow);//设置动画效果findViewById(R.id.popup_window).setOnClickListener(new View.OnClickListener() {
@Override
public voidonClick(View v) {
if(android.os.Build.VERSION.SDK_INT==24) {//在android 7.0中,当popupWindow的高度 过大时,调用showAsDropDown方法popupWindow可能会出现在view的上方或占满全屏,这是android 7.0的bug,用这种方式可以正常显示,7.1已经修复这个bug
int[] a =new int[2];
v.getLocationInWindow(a);
popupWindow.showAtLocation(getWindow().getDecorView(),Gravity.NO_GRAVITY,0,a[1] + v.getHeight());
}else{
popupWindow.showAsDropDown(v);
}
}
});
代码中注释写的比较清楚了,需要注意的是PopupWindow要设置背景色,以及可以通过设置setFocusable来实现点击返回键是使PopupWindow消失还是直接finish当前界面,另外还需要注重,在android 7.0系统中,当PopupWindow中的视图高度过大时,PopupWindow会占满全屏,这是系统的bug,需要做特殊处理,见上面代码。
ListPopupWindow是api 11 之后新加的组件,在列表选择时使用ListPopupWindow十分方便,他的用法和PopupWindow相识,但增加了适配器adapter,用法和listview一样,如下。
ListPopupWindow
final ListPopupWindow listPopupWindow =new ListPopupWindow(this);
listPopupWindow.setWidth(getResources().getDisplayMetrics().widthPixels);//设置宽度
listPopupWindow.setHeight(ListPopupWindow.MATCH_PARENT);//设置高度
listPopupWindow.setBackgroundDrawable(newColorDrawable(ContextCompat.getColor(this,R.color.half)));//设置背景色
listPopupWindow.setAdapter(newPopupWindowAdapter(this));
listPopupWindow.setAnchorView(findViewById(R.id.popup));
listPopupWindow.setModal(false);//设置为true响应物理键listPopupWindow.setHorizontalOffset(100);//垂直间距listPopupWindow.setVerticalOffset(100);//水平间距findViewById(R.id.popup).setOnClickListener(newView.OnClickListener() {
@Override
public void onClick(View v) {//同样android 7.0有显示问题,通过重置高度可以解决。
if(Build.VERSION.SDK_INT==24) {
int[] a =new int[2];
v.getLocationInWindow(a);
listPopupWindow.setHeight(getResources().getDisplayMetrics().heightPixels- a[1] - v.getHeight());
}
listPopupWindow.show();
}
});
listPopupWindow.setOnItemClickListener(newAdapterView.OnItemClickListener() {//item 点击事件
@Override
public void onItemClick(AdapterView parent,View view, intposition, longid) {
listPopupWindow.dismiss();
}
});
PopupWindowAdapter
public class PopupWindowAdapter extends BaseAdapter {
private Context context;
public PopupWindowAdapter(Context context) {
this.context= context;
}
@Override
public int getCount() {
return 10;
}
@Override
public Object getItem(intposition) {
return null;
}
@Override
public long getItemId(intposition) {
return0;
}
@Override
public View getView(intposition,View convertView,ViewGroup parent) {
ViewHolder viewHolder;
if(convertView ==null) {
convertView = LayoutInflater.from(context).inflate(R.layout.item_popup, null);
}else{
}
return convertView;
}
class ViewHolder {
}
}
网友评论