2019-04-11 18:01:49 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<data>
|
|
|
|
|
|
|
|
<variable
|
|
|
|
name="viewModel"
|
|
|
|
type="com.topjohnwu.magisk.ui.MainViewModel" />
|
|
|
|
|
|
|
|
</data>
|
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-04-18 14:13:31 +00:00
|
|
|
app:elevation="0dp"
|
2019-04-11 18:01:49 +00:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2019-04-11 19:17:54 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/main_toolbar"
|
|
|
|
onNavigationClick="@{() -> viewModel.navPressed()}"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="@color/primary"
|
|
|
|
app:navigationIcon="@drawable/ic_menu"
|
|
|
|
app:title="@string/magisk"
|
|
|
|
app:titleTextColor="@android:color/white" />
|
2019-04-11 18:01:49 +00:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2019-04-16 17:00:32 +00:00
|
|
|
<FrameLayout
|
2019-04-11 18:01:49 +00:00
|
|
|
android:id="@+id/main_nav_host"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?android:windowBackground"
|
2019-04-16 17:00:32 +00:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2019-04-11 18:01:49 +00:00
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
|
|
|
|
|
|
|
|
</layout>
|
|
|
|
|