Infinity-For-Lemmy/app/src/main/res/layout/app_bar_main.xml

26 lines
1.0 KiB
XML
Raw Normal View History

2018-07-26 17:04:44 +02:00
<?xml version="1.0" encoding="utf-8"?>
2019-02-21 10:24:23 +01:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-07-26 17:04:44 +02:00
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="ml.docilealligator.infinityforreddit.MainActivity">
2019-02-21 10:24:23 +01:00
<com.google.android.material.appbar.AppBarLayout
2018-07-26 17:04:44 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
2019-02-21 10:24:23 +01:00
<androidx.appcompat.widget.Toolbar
2018-07-26 17:04:44 +02:00
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
2019-02-21 10:24:23 +01:00
</com.google.android.material.appbar.AppBarLayout>
2018-07-26 17:04:44 +02:00
<include layout="@layout/content_main" />
2019-02-21 10:24:23 +01:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>