[fenix] For https://github.com/mozilla-mobile/fenix/issues/21309: remove outdated...
[gecko.git] / mobile / android / fenix / app / src / main / res / layout / activity_home.xml
blob5dc4bdefa973e8f82c0b1e1bad66638301ddf86f
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
2    - License, v. 2.0. If a copy of the MPL was not distributed with this
3    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
4 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
5     xmlns:app="http://schemas.android.com/apk/res-auto"
6     xmlns:tools="http://schemas.android.com/tools"
7     android:layout_width="match_parent"
8     android:layout_height="match_parent"
9     android:orientation="vertical"
10     android:id="@+id/rootContainer"
11     tools:context=".HomeActivity">
13     <ViewStub
14         android:id="@+id/navigationToolbarStub"
15         android:inflatedId="@id/navigationToolbar"
16         android:layout="@layout/navigation_toolbar"
17         android:layout_width="match_parent"
18         android:layout_height="56dp" />
20     <fragment
21         android:id="@+id/container"
22         android:name="androidx.navigation.fragment.NavHostFragment"
23         android:layout_width="match_parent"
24         android:layout_height="match_parent"
25         app:defaultNavHost="true"
26         app:navGraph="@navigation/nav_graph" />
27 </LinearLayout>