| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?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:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp"
- android:background="@color/white"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="10dp"
- android:orientation="horizontal"
- android:weightSum="10">
- <ImageView
- android:id="@+id/notorelist_img"
- android:layout_width="0dp"
- android:layout_height="18dp"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="13dp"
- android:layout_weight="0.7"
- android:src="@mipmap/iv_eview_list" />
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="13dp"
- android:layout_weight="6.9"
- android:orientation="vertical">
- <TextView
- android:id="@+id/notorelist_tvname"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="1561313213"
- android:textSize="13sp" />
- </LinearLayout>
- <TextView
- android:id="@+id/notorelist_tvtime"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="6dp"
- android:layout_marginRight="5dp"
- android:layout_weight="2.4"
- android:text="2019/11/23"
- android:textColor="@color/gray"
- android:textSize="13sp" />
- </LinearLayout>
- <!--<LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">-->
- <TextView
- android:id="@+id/notorelist_tvline"
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:layout_marginLeft="9.5dp"
- android:layout_marginRight="9.5dp"
- android:background="#E0E4EC" />
- <TextView
- android:id="@+id/notorelist_tvanswer"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="13.8dp"
- android:layout_marginTop="13px"
- android:layout_marginBottom="9.5dp"
- android:background="#FFF2E8"
- android:text="留言:可以使用"
- android:textSize="13sp" />
- <!-- </LinearLayout>-->
- </LinearLayout>
|