2022-08-16 09:58:24 +00:00
<!-- A DrawerLayout is intended to be used as the top - level content view using match_parent for both width and height to consume the full space available. -->
2024-06-24 19:17:17 +00:00
<LinearLayout
2022-08-16 09:58:24 +00:00
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.habitrpg.android.habitica.ui.activities.MainActivity"
2024-06-24 19:17:17 +00:00
android:background="?attr/colorContentBackground"
2022-08-16 09:58:24 +00:00
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"
2022-11-22 14:48:15 +00:00
android:background="?attr/colorWindowBackground"/>
2022-08-16 09:58:24 +00:00
<include layout= "@layout/activity_main_content" android:id= "@+id/content" />
2024-06-24 19:17:17 +00:00
</LinearLayout>