2019-01-09 22:22:58 +00:00
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
2019-02-07 23:37:52 +00:00
|
|
|
<LinearLayout 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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2020-01-17 00:58:12 +00:00
|
|
|
android:id="@+id/rootContainer"
|
2019-02-07 23:37:52 +00:00
|
|
|
tools:context=".HomeActivity">
|
|
|
|
|
2020-01-16 18:03:18 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/navigationToolbarStub"
|
|
|
|
android:inflatedId="@id/navigationToolbar"
|
|
|
|
android:layout="@layout/navigation_toolbar"
|
2019-01-15 01:42:58 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-01-16 18:03:18 +00:00
|
|
|
android:layout_height="56dp" />
|
2019-01-15 01:42:58 +00:00
|
|
|
|
|
|
|
<fragment
|
2019-02-07 23:37:52 +00:00
|
|
|
android:id="@+id/container"
|
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:defaultNavHost="true"
|
|
|
|
app:navGraph="@navigation/nav_graph" />
|
|
|
|
</LinearLayout>
|