2019-04-09 19:15:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-16 17:38:52 +00:00
|
|
|
android:id="@+id/notification_item"
|
2019-04-09 19:15:44 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="?attr/colorContentBackground"
|
2019-04-09 19:15:44 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingLeft="20dp"
|
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
|
android:paddingRight="20dp"
|
|
|
|
|
android:paddingBottom="10dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/notification_image"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:background="@color/transparent"
|
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/message_text"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:lineSpacingExtra="5dp"
|
|
|
|
|
android:text="Message" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/dismiss_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-03 12:48:11 +00:00
|
|
|
android:layout_marginLeft="10dp"
|
2019-04-09 19:15:44 +00:00
|
|
|
android:background="@color/transparent"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:focusable="true"
|
2019-05-03 12:48:11 +00:00
|
|
|
android:padding="10dp"
|
2019-04-09 19:15:44 +00:00
|
|
|
android:src="@drawable/notification_close" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|