public class Solve7PopupWindow extends PopupWindow {
public Solve7PopupWindow(View mMenuView, int matchParent, int matchParent1) {
super(mMenuView, matchParent,matchParent1);
}
@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);
}
}