| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?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="match_parent"
- android:background="@color/item_color2"
- android:orientation="vertical"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:orientation="vertical"
- >
- <View
- android:layout_width="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_height="1dp"
- android:background="@color/gainsboro"
- android:layout_marginTop="2dp"
- android:visibility="gone"/>
- <RelativeLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="2dp"
- >
- <TextView
- android:id="@+id/item_activity_workdaily_time_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="left|top"
- android:text="2016-11-02"
- android:textColor="#000000"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="5dp"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/item_activity_workdaily_status"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="待审批"
- android:layout_alignParentRight="true"
- android:layout_marginRight="10dp"
- android:textColor="@color/red"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="5dp"
- android:textSize="15sp"/>
- </RelativeLayout>
- <View
- android:layout_width="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_height="1dp"
- android:background="@color/lightgray"
- android:layout_marginTop="2dp"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="工作总结"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="5dp"
- android:layout_marginBottom="0dp"
- android:textSize="16sp"
- android:textColor="#575757"
- />
- <TextView
- android:id="@+id/item_activity_workdaily_summary_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="0dp"
- android:layout_toRightOf="@id/avatar_img"
- android:maxLines="3"
- android:ellipsize="end"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:paddingBottom="5dp"
- android:textSize="14sp"
- android:textColor="#575757"
- />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="8dp"
- android:background="@color/gainsboro"
- />
- </LinearLayout>
|