<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/ll_app_mail"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/register_gray"
|
android:orientation="vertical"
|
android:paddingBottom="10dp"
|
android:paddingTop="10dp">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<FrameLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:layout_marginBottom="10dp"
|
android:layout_marginTop="10dp"
|
android:background="@drawable/shape_msg_time"
|
android:gravity="center">
|
|
<TextView
|
android:id="@+id/tv_time"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:layout_marginBottom="2dp"
|
android:layout_marginLeft="8dp"
|
android:layout_marginRight="8dp"
|
android:layout_marginTop="2dp"
|
android:gravity="center" />
|
</FrameLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="top"
|
android:layout_marginLeft="10dp"
|
android:layout_marginRight="10dp"
|
android:src="@drawable/ic_msg_hint" />
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="5dp"
|
android:layout_marginRight="12dp"
|
android:background="@drawable/shape_category_search"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="5dp"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:id="@+id/iv_red"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:src="@drawable/ic_red_dot" />
|
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
</LinearLayout>
|
|
<TextView
|
android:id="@+id/tv_detail"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="5dp"
|
android:layout_marginLeft="5dp"
|
android:ellipsize="end"
|
android:maxLines="2"
|
android:textColor="@color/gray" />
|
|
<TextView
|
android:id="@+id/tv_look_detail"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="10dp"
|
android:gravity="center"
|
android:text="查看详情>"
|
android:visibility="gone" />
|
|
</LinearLayout>
|
</LinearLayout>
|
</LinearLayout>
|
|
</LinearLayout>
|