blob: a6c18b8ef2ebeb7f8237dcc12b0da752b5706a23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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"
xmlns:tools="http://schemas.android.com/tools"
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"
tools:ignore="Overdraw" />
|