OSDN Git Service

Update target SDK to 32 s-x86
authorMauro Rossi <issor.oruam@gmail.com>
Sun, 3 Apr 2022 16:20:50 +0000 (18:20 +0200)
committerMauro Rossi <issor.oruam@gmail.com>
Fri, 9 Sep 2022 22:19:41 +0000 (00:19 +0200)
Fixes building error due to missing app/src/compat-32
java/com/farmerbb/taskbar/util/CompatUtils.java

app/src/compat-32/java/com/farmerbb/taskbar/util/CompatUtils.java [new file with mode: 0644]

diff --git a/app/src/compat-32/java/com/farmerbb/taskbar/util/CompatUtils.java b/app/src/compat-32/java/com/farmerbb/taskbar/util/CompatUtils.java
new file mode 100644 (file)
index 0000000..347e0c0
--- /dev/null
@@ -0,0 +1,34 @@
+/* Copyright 2020 Braden Farmer
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.farmerbb.taskbar.util;
+
+// Utility class meant for compatibility between the Android-x86 version of Taskbar (compiled with SDK 28)
+// and the Play Store version of Taskbar (compiled with SDK 30).
+// TODO Do not make changes to this file without making corresponding changes to the Android-x86 version.
+
+import android.os.Build;
+import android.view.View;
+import android.view.WindowInsets;
+
+public class CompatUtils {
+
+    private CompatUtils() {}
+
+    public static boolean isImeVisible(View view) {
+        return Build.VERSION.SDK_INT >= Build.VERSION_CODES.R
+                && view.getRootWindowInsets().isVisible(WindowInsets.Type.ime());
+    }
+}
\ No newline at end of file