android 获取手机屏幕高度,Android全面屏手机获取屏幕高度适配问题

在做手机截屏功能的时候发现,全面屏截图和调用系统的截图不一致

经排查,是获取手机屏幕高度的值不对

getResources().getDisplayMetrics().heightPixels 在三星S8上返回的值不对,没包含系统状态栏

Stack Overflow上找到了答案

mActivity.getWindowManager().getDefaultDisplay().getRealMetrics(metrics); 用这个方法去获取的,就一直是包含状态栏的

public static int getFullActivityHeight(@Nullable Context context) {

if (!isAllScreenDevice()) {

return getScreenHeight(context);

}

return getScreenRealHeight(context);

}

private static final int PORTRAIT = 0;

private static final int LANDSCAPE = 1;

@NonNull

private volatile static Point[] mRealSizes = new Point[2];

public static int getScreenRealHeight(@Nullable Context context) {

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) {

return getScreenHeight(context);

}

int orientation = context != null

? context.getResources().getConfiguration().orientation

: AppUtils.getContext().getResources().getConfiguration().orientation;

orientation = orientation == Configuration.ORIENTATION_PORTRAIT ? PORTRAIT : LANDSCAPE;

if (mRealSizes[orientation] == null) {

WindowManager windowManager = context != null

? (WindowManager) context.getSystemService(Context.WINDOW_SERVICE)

: (WindowManager) AppUtils.getContext().getSystemService(Context.WINDOW_SERVICE);

if (windowManager == null) {

return getScreenHeight(context);

}

Display display = windowManager.getDefaultDisplay();

Point point = new Point();

display.getRealSize(point);

mRealSizes[orientation] = point;

}

return mRealSizes[orientation].y;

}

public static int getScreenHeight(@Nullable Context context) {

if (context != null) {

return context.getResources().getDisplayMetrics().heightPixels;

}

return 0;

}

private volatile static boolean mHasCheckAllScreen;

private volatile static boolean mIsAllScreenDevice;

public static boolean isAllScreenDevice() {

if (mHasCheckAllScreen) {

return mIsAllScreenDevice;

}

mHasCheckAllScreen = true;

mIsAllScreenDevice = false;

// 低于 API 21的,都不会是全面屏。。。

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {

return false;

}

WindowManager windowManager = (WindowManager) AppUtils.getContext().getSystemService(Context.WINDOW_SERVICE);

if (windowManager != null) {

Display display = windowManager.getDefaultDisplay();

Point point = new Point();

display.getRealSize(point);

float width, height;

if (point.x < point.y) {

width = point.x;

height = point.y;

} else {

width = point.y;

height = point.x;

}

if (height / width >= 1.97f) {

mIsAllScreenDevice = true;

}

}

return mIsAllScreenDevice;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值