ProjectLaogai/app/src/main/res/layout/app_bar_main.xml

33 lines
1.4 KiB
XML
Raw Normal View History

2018-10-24 18:22:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
2018-10-26 00:50:37 +02:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
2018-10-24 18:22:05 +02:00
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"
tools:context=".MainActivity">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
2018-10-26 00:50:37 +02:00
<com.google.android.material.appbar.AppBarLayout
2018-10-24 18:22:05 +02:00
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/AppTheme.AppBarOverlay">
2018-10-26 00:50:37 +02:00
<androidx.appcompat.widget.Toolbar
2018-10-24 18:22:05 +02:00
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/design_default_color_primary"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
2018-10-26 00:50:37 +02:00
</com.google.android.material.appbar.AppBarLayout>
2018-10-24 18:22:05 +02:00
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"></FrameLayout>
</LinearLayout>
2018-10-26 00:50:37 +02:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>