mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/root_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="com.habitrpg.android.habitica.ui.activities.MainActivity"
|
|
android:background="?attr/colorContentBackground"
|
|
android:animateLayoutChanges="true">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/navigation_drawer"
|
|
class="com.habitrpg.android.habitica.ui.fragments.NavigationDrawerFragment"
|
|
android:layout_width="@dimen/drawer_width"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
tools:layout="@layout/drawer_main" />
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/colorWindowBackground" />
|
|
|
|
<include
|
|
layout="@layout/activity_main_content"
|
|
android:id="@+id/content" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|