Prevent column focus

This commit is contained in:
M66B 2020-05-19 16:18:04 +02:00
parent 78dee11bf0
commit 4727117052
1 changed files with 6 additions and 2 deletions

View File

@ -14,7 +14,9 @@
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2" />
android:layout_weight="2"
android:focusable="false"
android:focusableInTouchMode="false" />
<View
android:id="@+id/content_separator"
@ -26,7 +28,9 @@
android:id="@+id/content_pane"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
android:layout_weight="1"
android:focusable="false"
android:focusableInTouchMode="false" />
</LinearLayout>
<eu.faircode.email.ScrollViewEx