Merge pull request #11251 from t895/notouch-fix

Android: Use FrameLayout as root for notouch emulation layout
This commit is contained in:
JosJuice 2022-11-06 09:10:47 +01:00 committed by GitHub
commit 1a5110791c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
<View <FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_emulation" android:id="@+id/layout_emulation"
android:layout_height="match_parent" android:layout_height="match_parent"
@ -11,4 +11,4 @@
android:focusable="false" android:focusable="false"
android:focusableInTouchMode="false" /> android:focusableInTouchMode="false" />
</View> </FrameLayout>

View File

@ -1,4 +1,4 @@
<View <FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_emulation" android:id="@+id/layout_emulation"
android:layout_height="match_parent" android:layout_height="match_parent"
@ -11,4 +11,4 @@
android:focusable="false" android:focusable="false"
android:focusableInTouchMode="false" /> android:focusableInTouchMode="false" />
</View> </FrameLayout>