The mysterious ways of Android

This commit is contained in:
M66B 2019-09-06 10:26:46 +02:00
parent 9cdf512381
commit 5032b15ee3
1 changed files with 3 additions and 5 deletions

View File

@ -1,5 +1,4 @@
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" <androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout" android:id="@+id/drawer_layout"
android:layout_width="match_parent" android:layout_width="match_parent"
@ -13,10 +12,9 @@
<FrameLayout <FrameLayout
android:id="@+id/content_frame" android:id="@+id/content_frame"
android:layout_width="0dp" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1" />
app:layout_constraintEnd_toStartOf="@+id/content_separator" />
<View <View
android:id="@+id/content_separator" android:id="@+id/content_separator"
@ -26,7 +24,7 @@
<FrameLayout <FrameLayout
android:id="@+id/content_pane" android:id="@+id/content_pane"
android:layout_width="0dp" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" /> android:layout_weight="1" />
</LinearLayout> </LinearLayout>