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<!-- Layout to be used with only max 3 actions. It has a much larger picture at the left side-->
19<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
20    android:id="@+id/status_bar_latest_event_content"
21    android:layout_width="match_parent"
22    android:layout_height="128dp"
23    android:background="#00000000"
24    >
25    <ImageView android:id="@+id/icon"
26        android:layout_width="128dp"
27        android:layout_height="128dp"
28        android:scaleType="centerCrop"
29        />
30    <LinearLayout
31        android:layout_width="match_parent"
32        android:layout_height="wrap_content"
33        android:layout_marginStart="12dp"
34        android:layout_toEndOf="@id/icon"
35        android:minHeight="@dimen/notification_large_icon_height"
36        android:orientation="vertical"
37        >
38        <include layout="@layout/notification_template_part_line1" />
39        <include layout="@layout/notification_template_part_line2" />
40        <include layout="@layout/notification_template_part_line3" />
41    </LinearLayout>
42    <LinearLayout
43        android:id="@+id/media_actions"
44        android:layout_width="match_parent"
45        android:layout_height="48dp"
46        android:layout_toEndOf="@id/icon"
47        android:layout_alignParentBottom="true"
48        android:layout_marginStart="12dp"
49        android:layout_marginEnd="12dp"
50        android:orientation="horizontal"
51        android:layoutDirection="ltr"
52        >
53        <!-- media buttons will be added here -->
54    </LinearLayout>
55    <ImageView
56        android:layout_width="match_parent"
57        android:layout_height="1dp"
58        android:layout_toEndOf="@id/icon"
59        android:layout_above="@id/media_actions"
60        android:id="@+id/action_divider"
61        android:background="@drawable/notification_template_divider_media" />
62</RelativeLayout>
63