1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="wrap_content"
5    android:orientation="vertical"
6    android:background="@android:color/white"
7    android:paddingBottom="4dp">
8    <View android:layout_width="match_parent"
9        android:layout_height="1px"
10        android:background="#aaa"/>
11    <TextView
12        android:id="@+id/info"
13        android:layout_width="match_parent"
14        android:layout_height="wrap_content"
15        android:drawablePadding="2dp"
16        android:gravity="center_vertical"
17        android:textAppearance="@android:style/TextAppearance.Material.Notification.Info"
18        android:paddingLeft="16dp"
19        android:paddingTop="4dp"/>
20    <TextView
21        android:id="@+id/title"
22        android:layout_width="match_parent"
23        android:layout_height="wrap_content"
24        android:textAppearance="@android:style/TextAppearance.Material.Notification.Title"
25        android:paddingLeft="16dp"/>
26    <TextView
27        android:id="@+id/line2"
28        android:layout_width="match_parent"
29        android:layout_height="wrap_content"
30        android:textAppearance="@android:style/TextAppearance.Material.Notification.Line2"
31        android:paddingLeft="16dp"/>
32</LinearLayout>