blob: b9791341a40b0e00f42aa890763cd9e702ceb483 [file] [log] [blame]
Sergey Vasilinetsde396b32016-06-30 18:39:36 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2016 The Android Open Source Project
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License
16 -->
Aurimas Liutikas1d6c6da2018-04-03 17:08:29 -070017<androidx.coordinatorlayout.widget.CoordinatorLayout
Sergey Vasilinetsde396b32016-06-30 18:39:36 -070018 xmlns:android="http://schemas.android.com/apk/res/android"
Stan Ilievbf256272017-01-26 13:26:08 -050019 android:id="@+id/app_bar_layout"
Sergey Vasilinetsde396b32016-06-30 18:39:36 -070020 android:layout_width="match_parent"
21 android:layout_height="match_parent"
22 android:fitsSystemWindows="true">
23
24 <android.support.design.widget.AppBarLayout
25 android:layout_width="match_parent"
26 android:layout_height="wrap_content"
27 android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
28
Aurimas Liutikas1d6c6da2018-04-03 17:08:29 -070029 <androidx.appcompat.widget.Toolbar
Sergey Vasilinetsde396b32016-06-30 18:39:36 -070030 android:id="@+id/toolbar"
31 android:layout_width="match_parent"
32 android:layout_height="?attr/actionBarSize"
33 android:background="?attr/colorPrimary"/>
34 </android.support.design.widget.AppBarLayout>
35
Aurimas Liutikas1d6c6da2018-04-03 17:08:29 -070036</androidx.coordinatorlayout.widget.CoordinatorLayout>