mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 21:33:53 +01:00
33 lines
No EOL
1.2 KiB
XML
33 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
<LinearLayout
|
|
android:id="@+id/toolbarLayout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="?attr/actionBarSize">
|
|
<include layout="@layout/toolbar" />
|
|
</LinearLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/toolbarLayout"
|
|
android:layout_marginTop="?attr/actionBarSize">
|
|
|
|
<fragment
|
|
android:id="@+id/settingsFragment"
|
|
android:name="fr.free.nrw.commons.settings.SettingsFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:layout="@xml/preferences"
|
|
/>
|
|
</RelativeLayout>
|
|
|
|
<include layout="@layout/drawer_view" />
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout> |