|
@@ -1,10 +1,13 @@
|
|
|
package com.cooleshow.base.utils;
|
|
|
|
|
|
import android.annotation.SuppressLint;
|
|
|
+import android.app.Activity;
|
|
|
import android.content.Context;
|
|
|
import android.content.Intent;
|
|
|
import android.content.res.Configuration;
|
|
|
import android.content.res.Resources;
|
|
|
+import android.graphics.Point;
|
|
|
+import android.graphics.Rect;
|
|
|
import android.net.Uri;
|
|
|
import android.net.wifi.WifiInfo;
|
|
|
import android.net.wifi.WifiManager;
|
|
@@ -12,6 +15,7 @@ import android.os.Build;
|
|
|
import android.provider.Settings;
|
|
|
import android.telephony.TelephonyManager;
|
|
|
import android.text.TextUtils;
|
|
|
+import android.view.WindowManager;
|
|
|
|
|
|
import androidx.annotation.RequiresApi;
|
|
|
import androidx.annotation.RequiresPermission;
|
|
@@ -521,4 +525,29 @@ public final class DeviceUtils {
|
|
|
}
|
|
|
return prefix + UUID.nameUUIDFromBytes(id.getBytes()).toString().replace("-", "");
|
|
|
}
|
|
|
+
|
|
|
+ public static int getWindowVisibleDisplay(Context context) {
|
|
|
+ Rect outRect1 = new Rect();
|
|
|
+ try {
|
|
|
+ ((Activity) context).getWindow().getDecorView().getWindowVisibleDisplayFrame(outRect1);
|
|
|
+ } catch (ClassCastException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ return getAppScreenHeight(context);
|
|
|
+ }
|
|
|
+ int activityHeight = outRect1.height();
|
|
|
+ return activityHeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Return the application's height of screen, in pixel.
|
|
|
+ *
|
|
|
+ * @return the application's height of screen, in pixel
|
|
|
+ */
|
|
|
+ public static int getAppScreenHeight(Context context) {
|
|
|
+ WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
|
|
|
+ if (wm == null) return -1;
|
|
|
+ Point point = new Point();
|
|
|
+ wm.getDefaultDisplay().getSize(point);
|
|
|
+ return point.y;
|
|
|
+ }
|
|
|
}
|