1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2014 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  -->
17
18<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
19    xmlns:internal="http://schemas.android.com/apk/prv/res/android"
20    android:id="@+id/status_bar_latest_event_content"
21    android:layout_width="match_parent"
22    android:layout_height="match_parent"
23    internal:layout_minHeight="65dp"
24    internal:layout_maxHeight="unbounded"
25    >
26    <ImageView
27        android:id="@+id/big_picture"
28        android:layout_width="match_parent"
29        android:layout_height="192dp"
30        android:layout_marginTop="64dp"
31        android:layout_gravity="bottom"
32        android:scaleType="centerCrop"
33        />
34    <ImageView
35        android:layout_width="match_parent"
36        android:layout_height="6dp"
37        android:layout_marginTop="64dp"
38        android:scaleType="fitXY"
39        android:src="@drawable/title_bar_shadow"
40        />
41    <include layout="@layout/notification_template_material_base"
42        android:layout_width="match_parent"
43        android:layout_height="64dp"
44        />
45  <FrameLayout
46        android:layout_width="match_parent"
47        android:layout_height="wrap_content"
48        android:layout_marginTop="208dp"
49        android:paddingStart="@dimen/notification_large_icon_width"
50        android:layout_gravity="bottom"
51        android:background="#CCEEEEEE"
52        >
53        <include
54            layout="@layout/notification_material_action_list"
55            android:id="@+id/actions"
56            android:layout_gravity="bottom"
57            android:layout_width="match_parent"
58            android:layout_height="wrap_content"
59            />
60    </FrameLayout>
61</FrameLayout>
62