重写PopupWindow中的 showAsDropDown 方法 ,在方法中加入:
if(Build.VERSION.SDK_INT >= 24) {
Rect rect = new Rect();
anchor.getGlobalVisibleRect(rect);
int h = anchor.getResources().getDisplayMetrics().heightPixels - rect.bottom;
setHeight(h);
}
重写PopupWindow中的 showAsDropDown 方法 ,在方法中加入:
if(Build.VERSION.SDK_INT >= 24) {
Rect rect = new Rect();
anchor.getGlobalVisibleRect(rect);
int h = anchor.getResources().getDisplayMetrics().heightPixels - rect.bottom;
setHeight(h);
}
本文标题:2020-04-22 关于PopupWindow 数据太多导致s
本文链接:https://www.haomeiwen.com/subject/lqqwihtx.html
网友评论