mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 18:06:17 +00:00
41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
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"
|
||
|
|
android:layout_marginLeft="20dp"
|
||
|
|
android:layout_marginTop="10dp"
|
||
|
|
android:background="@color/transparent"
|
||
|
|
android:clickable="true"
|
||
|
|
android:focusable="true"
|
||
|
|
android:src="@drawable/notification_close" />
|
||
|
|
|
||
|
|
</LinearLayout>
|