|
|
@@ -1,66 +1,74 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- android:orientation="horizontal"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:background="@drawable/selector_me_menu_item_bg">
|
|
|
+ android:background="@drawable/selector_me_menu_item_bg"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
<ImageView
|
|
|
- android:visibility="visible"
|
|
|
android:id="@+id/photo_img"
|
|
|
android:layout_width="40dp"
|
|
|
android:layout_height="40dp"
|
|
|
- android:contentDescription="@string/app_name"
|
|
|
android:layout_marginLeft="10dp"
|
|
|
- android:layout_toRightOf="@id/node_ll"
|
|
|
android:layout_marginTop="12dp"
|
|
|
- android:src="@drawable/common_header_boy"/>
|
|
|
+ android:layout_toRightOf="@id/node_ll"
|
|
|
+ android:contentDescription="@string/app_name"
|
|
|
+ android:src="@drawable/common_header_boy"
|
|
|
+ android:visibility="visible" />
|
|
|
+
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
|
- android:visibility="visible"
|
|
|
android:id="@+id/photo_me"
|
|
|
android:layout_width="40dp"
|
|
|
android:layout_height="40dp"
|
|
|
- android:contentDescription="@string/app_name"
|
|
|
android:layout_marginLeft="10dp"
|
|
|
- android:layout_toRightOf="@id/node_ll"
|
|
|
android:layout_marginTop="12dp"
|
|
|
- android:src="@drawable/common_header_boy"/>
|
|
|
+ android:layout_toRightOf="@id/node_ll"
|
|
|
+ android:contentDescription="@string/app_name"
|
|
|
+ android:src="@drawable/common_header_boy"
|
|
|
+ android:visibility="visible" />
|
|
|
+
|
|
|
<LinearLayout
|
|
|
- android:orientation="vertical"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:background="@drawable/selector_me_menu_item_bg">
|
|
|
+ android:background="@drawable/selector_me_menu_item_bg"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
<RelativeLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent">
|
|
|
+
|
|
|
<TextView
|
|
|
- android:id="@+id/tv_name"
|
|
|
+ android:id="@+id/tv_date"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
android:layout_margin="10dp"
|
|
|
- android:textSize="15sp"
|
|
|
- android:text="采购单-2013212"
|
|
|
- android:maxLength="12"
|
|
|
- android:singleLine="true"
|
|
|
- android:ellipsize="end"/>
|
|
|
+ android:text="2016-10-09 09:11" />
|
|
|
|
|
|
<TextView
|
|
|
- android:id="@+id/tv_date"
|
|
|
+ android:id="@+id/tv_name"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentLeft="true"
|
|
|
android:layout_margin="10dp"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:text="2016-10-09 09:11"/>
|
|
|
+ android:layout_toLeftOf="@id/tv_date"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:maxLength="12"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="采购单-2013212"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+
|
|
|
</RelativeLayout>
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/tv_status"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
- android:layout_marginBottom="10dp"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="状态"
|
|
|
- android:textColor="@color/light_gray"
|
|
|
+ android:layout_marginBottom="10dp"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
android:autoText="false"
|
|
|
- />
|
|
|
+ android:text="状态"
|
|
|
+ android:textColor="@color/light_gray" />
|
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|