自定义popupwindow兼容7.0 (解决弹出位置问题)

import android.os.Build;
import android.view.Gravity;
import android.view.View;
import android.widget.PopupWindow;

public class MyPopupWindow extends PopupWindow {




    public MyPopupWindow(View contentView) {
        super(contentView);
    }


    public MyPopupWindow(int width, int height) {
        super(width, height);
    }


    public MyPopupWindow(View contentView, int width, int height) {
        super(contentView, width, height);
    }


    public MyPopupWindow(View contentView, int width, int height, boolean focusable) {
        super(contentView, width, height, focusable);
    }


    @Override
    public void showAsDropDown(View anchorView, int xoff, int yoff) {
        if (Build.VERSION.SDK_INT == Build.VERSION_CODES.N) {
            int[] a = new int[2];
            anchorView.getLocationInWindow(a);
            showAtLocation(anchorView, Gravity.NO_GRAVITY, xoff, a[1] + anchorView.getHeight() + yoff);
        } else {
            super.showAsDropDown(anchorView, xoff, yoff);
        }
    }


    @Override
    public void showAsDropDown(View anchorView) {
        if (Build.VERSION.SDK_INT == Build.VERSION_CODES.N) {
            int[] a = new int[2];
            anchorView.getLocationInWindow(a);
            showAtLocation(anchorView, Gravity.NO_GRAVITY, 0, a[1] + anchorView.getHeight() + 0);
        } else {
            super.showAsDropDown(anchorView);
        }
    }
}

猜你喜欢

转载自blog.csdn.net/Mr_WuTengFei/article/details/80427305
今日推荐