21 lines
916 B
XML
21 lines
916 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
|
<com.google.android.material.appbar.AppBarLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<com.google.android.material.appbar.MaterialToolbar
|
||
|
|
android:id="@+id/topAppBar"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="?attr/actionBarSize"
|
||
|
|
app:titleCentered="true"
|
||
|
|
style="@style/Theme.Isolaatti"
|
||
|
|
app:menu="@menu/notifications_menu"
|
||
|
|
app:title="Notifications"/>
|
||
|
|
|
||
|
|
</com.google.android.material.appbar.AppBarLayout>
|
||
|
|
|
||
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|