blob: 12eeb4729dcd7cf323d38f83981ee8d9d40c4b0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Shared title bar. The theme is NoActionBar so each screen hosts its own
Toolbar; the dark overlay gives the title light text on the dark bar. -->
<androidx.appcompat.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/bar"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
|