xref: /aosp_15_r20/external/skia/platform_tools/android/apps/skqp/src/main/res/layout/activity_skqp.xml (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1<?xml version="1.0" encoding="utf-8"?>
2<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:app="http://schemas.android.com/apk/res-auto"
4    xmlns:tools="http://schemas.android.com/tools"
5    android:layout_width="match_parent"
6    android:layout_height="match_parent"
7    tools:context="org.skia.skqp.SkQPActivity">
8
9    <android.support.design.widget.AppBarLayout
10        android:layout_width="match_parent"
11        android:layout_height="wrap_content"
12        android:theme="@style/AppTheme.AppBarOverlay">
13
14        <android.support.v7.widget.Toolbar
15            android:id="@+id/toolbar"
16            android:layout_width="match_parent"
17            android:layout_height="?attr/actionBarSize"
18            android:background="?attr/colorPrimary"
19            app:popupTheme="@style/AppTheme.PopupOverlay" />
20
21    </android.support.design.widget.AppBarLayout>
22
23    <include layout="@layout/content_skqp" />
24
25</android.support.design.widget.CoordinatorLayout>
26