| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?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:background="@color/white"
- android:layout_marginTop="10dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_marginTop="10dp"
- android:orientation="horizontal"
- android:layout_marginBottom="10dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <ImageView
- android:layout_centerVertical="true"
- android:id="@+id/notorelist_img"
- android:src="@mipmap/iv_eview_list"
- android:layout_width="15dp"
- android:layout_height="18dp"
- android:layout_marginLeft="13dp" />
- <LinearLayout
- android:layout_marginLeft="13dp"
- android:orientation="vertical"
- android:layout_toRightOf="@id/notorelist_img"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <TextView
- android:id="@+id/notorelist_tvname"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="1561313213"
- android:textSize="13sp" />
- <TextView
- android:id="@+id/notorelist_tvnum"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="1561313213"
- android:textSize="13sp" />
- </LinearLayout>
- <TextView
- android:layout_centerVertical="true"
- android:layout_alignParentRight="true"
- android:id="@+id/notorelist_tvtime"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:text="2019/11/23"
- android:textColor="@color/gray"
- android:textSize="13sp" />
- </RelativeLayout>
- <!--<LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">-->
- <TextView
- android:layout_marginLeft="9.5dp"
- android:layout_marginRight="9.5dp"
- android:background="#E0E4EC"
- android:id="@+id/notorelist_tvline"
- android:layout_width="match_parent"
- android:layout_height="1dp" />
- <TextView
- android:background="#FFF2E8"
- android:textSize="13sp"
- android:id="@+id/notorelist_tvanswer"
- android:layout_marginTop="13px"
- android:text="留言:可以使用"
- android:layout_marginBottom="9.5dp"
- android:layout_marginLeft="13.8dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <!-- </LinearLayout>-->
- </LinearLayout>
|