summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java/org
diff options
context:
space:
mode:
authorMike Harris <atarimike@gmail.com>2017-10-04 23:04:26 -0700
committerMike Harris <atarimike@gmail.com>2017-10-15 16:44:56 -0700
commit80d51c97abd6c379ca6c587d0e24079ac649626b (patch)
tree94db73b4fda2982ee0b3ae0cddee87b580e20818 /Source/Android/app/src/main/java/org
parentbb3f61296e8a436cc2543a9211e96081e07943ab (diff)
Add dummy View that works around a bug with the nVidia Shield.
Without this View, the emulation SurfaceView acts like it has the highest Z-value, blocking any other View. This includes the menu fragments and the screenshot ImageView.
Diffstat (limited to 'Source/Android/app/src/main/java/org')
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/NVidiaShieldWorkaroundView.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/NVidiaShieldWorkaroundView.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/NVidiaShieldWorkaroundView.java
new file mode 100644
index 0000000000..5d2e4a8bbe
--- /dev/null
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/NVidiaShieldWorkaroundView.java
@@ -0,0 +1,25 @@
+/**
+ * Copyright 2013 Dolphin Emulator Project
+ * Licensed under GPLv2+
+ * Refer to the license.txt file included.
+ */
+
+package org.dolphinemu.dolphinemu.ui;
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.view.View;
+
+/**
+ * Work around a bug with the nVidia Shield.
+ */
+public final class NVidiaShieldWorkaroundView extends View
+{
+ public NVidiaShieldWorkaroundView(Context context, AttributeSet attrs)
+ {
+ super(context, attrs);
+
+ // Setting this seems to workaround the bug
+ setWillNotDraw(false);
+ }
+}