1<?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  -->
17<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    android:id="@+id/status_bar_latest_event_content"
19    android:layout_width="match_parent"
20    android:layout_height="wrap_content"
21    android:tag="messaging"
22    >
23    <include layout="@layout/notification_template_header" />
24    <LinearLayout
25            android:id="@+id/notification_action_list_margin_target"
26            android:layout_width="match_parent"
27            android:layout_height="wrap_content"
28            android:layout_gravity="top"
29            android:layout_marginTop="@dimen/notification_content_margin_top"
30            android:clipToPadding="false"
31            android:orientation="vertical">
32
33        <LinearLayout
34            android:id="@+id/notification_main_column"
35            android:layout_width="match_parent"
36            android:layout_height="wrap_content"
37            android:layout_gravity="top"
38            android:paddingStart="@dimen/notification_content_margin_start"
39            android:paddingEnd="@dimen/notification_content_margin_end"
40            android:minHeight="@dimen/notification_min_content_height"
41            android:layout_marginBottom="@dimen/notification_content_margin_bottom"
42            android:clipToPadding="false"
43            android:orientation="vertical"
44            >
45            <include layout="@layout/notification_template_part_line1"
46                android:layout_width="match_parent"
47                android:layout_height="wrap_content" />
48
49            <com.android.internal.widget.MessagingLinearLayout
50                android:id="@+id/notification_messaging"
51                android:layout_width="match_parent"
52                android:layout_height="wrap_content"
53                android:spacing="@dimen/notification_messaging_spacing" >
54                <com.android.internal.widget.ImageFloatingTextView android:id="@+id/inbox_text0"
55                    style="@style/Widget.Material.Notification.MessagingText"
56                    />
57                <com.android.internal.widget.ImageFloatingTextView android:id="@+id/inbox_text1"
58                    style="@style/Widget.Material.Notification.MessagingText"
59                    />
60                <com.android.internal.widget.ImageFloatingTextView android:id="@+id/inbox_text2"
61                    style="@style/Widget.Material.Notification.MessagingText"
62                    />
63                <com.android.internal.widget.ImageFloatingTextView android:id="@+id/inbox_text3"
64                    style="@style/Widget.Material.Notification.MessagingText"
65                    />
66                <com.android.internal.widget.ImageFloatingTextView android:id="@+id/inbox_text4"
67                    style="@style/Widget.Material.Notification.MessagingText"
68                    />
69                <com.android.internal.widget.ImageFloatingTextView android:id="@+id/inbox_text5"
70                    style="@style/Widget.Material.Notification.MessagingText"
71                    />
72                <com.android.internal.widget.ImageFloatingTextView android:id="@+id/inbox_text6"
73                    style="@style/Widget.Material.Notification.MessagingText"
74                    />
75            </com.android.internal.widget.MessagingLinearLayout>
76        </LinearLayout>
77    </LinearLayout>
78    <include layout="@layout/notification_material_action_list" />
79    <include layout="@layout/notification_template_right_icon" />
80</FrameLayout>
81