123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/layout"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#00000000"
- tools:ignore="ContentDescription">
-
- <ImageView
- android:id="@+id/image"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_margin="10dp"/>
-
- <TextView
- android:id="@+id/tital"
- android:layout_toRightOf="@+id/image"
- style="@style/NotificationTitle"
- android:layout_marginTop="10dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
-
- <TextView
- android:id="@+id/message"
- style="@style/NotificationText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_toRightOf="@+id/image"
- android:layout_marginRight="40dp"
- android:layout_below="@+id/tital"
- android:singleLine="true"/>
-
- <TextView
- android:id="@+id/time"
- style="@style/NotificationText"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"/>
-
- </RelativeLayout>
|