2018-10-30 01:59:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-13 02:56:20 +00:00
|
|
|
<LinearLayout
|
2018-10-30 16:04:05 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-11-21 20:47:21 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-10-30 16:04:05 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-21 20:47:21 +00:00
|
|
|
android:layout_height="match_parent"
|
2018-12-13 02:56:20 +00:00
|
|
|
android:orientation="vertical"
|
2018-11-21 20:47:21 +00:00
|
|
|
tools:context=".activities.MainActivity">
|
2018-10-30 16:04:05 +00:00
|
|
|
|
2018-12-13 02:56:20 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
2018-12-20 22:40:48 +00:00
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
2018-12-21 00:06:11 +00:00
|
|
|
android:elevation="4dp"
|
2018-12-13 02:56:20 +00:00
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark" />
|
2018-10-30 16:04:05 +00:00
|
|
|
|
2018-12-13 02:56:20 +00:00
|
|
|
<fragment
|
2018-12-13 03:30:27 +00:00
|
|
|
android:id="@+id/navHostFragment"
|
2018-12-13 02:56:20 +00:00
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
app:defaultNavHost="true"
|
|
|
|
app:navGraph="@navigation/mobile_navigation" />
|
2018-10-30 16:04:05 +00:00
|
|
|
|
2018-12-13 02:56:20 +00:00
|
|
|
</LinearLayout>
|