在Android 7.0上PopupWindow.showAsD

2018-03-29  本文已影响0人  smallestt
/**
 * Created by wangtingting on 2018/3/29.
 * 在Android 7.0上PopupWindow.showAsDropDown不起作用的解决方法
 */

public class MyPopWindow extends PopupWindow{
    public MyPopWindow(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);
    }
}
上一篇 下一篇

猜你喜欢

热点阅读