|
|
@@ -0,0 +1,280 @@
|
|
|
+<?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="#ebe9e9"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+
|
|
|
+ <com.xzjmyk.pm.activity.ui.erp.view.CustomerScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:fillViewport="true"
|
|
|
+ android:scrollbars="none">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:focusable="true"
|
|
|
+ android:focusableInTouchMode="true"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ly_head_display"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginBottom="10dp"
|
|
|
+ android:visibility="visible"
|
|
|
+ >
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="5dp"
|
|
|
+ android:background="@color/item_line" />
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:visibility="visible"
|
|
|
+ >
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/work_daily_detail_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_marginTop="5dp"
|
|
|
+ android:layout_marginBottom="0dp"
|
|
|
+ android:textSize="@dimen/text_main"
|
|
|
+ android:visibility="gone"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/item_daily_details_approval_flow_photo_img"
|
|
|
+ android:layout_width="40dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:background="@drawable/avatar_normal"
|
|
|
+ android:contentDescription="@string/app_name"
|
|
|
+ android:layout_marginLeft="15dp"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:layout_marginBottom="10dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_daily_details_approval_flow_name_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_toRightOf="@+id/item_daily_details_approval_flow_photo_img"
|
|
|
+ android:text="方龙海"
|
|
|
+ android:textColor="#575757"
|
|
|
+ android:textSize="@dimen/text_hine"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_daily_details_approval_flow_status_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_toRightOf="@+id/item_daily_details_approval_flow_photo_img"
|
|
|
+ android:layout_below="@id/item_daily_details_approval_flow_name_tv"
|
|
|
+ android:text="移动终端部>xx"
|
|
|
+ android:textColor="@color/text_main"
|
|
|
+ android:textSize="@dimen/text_hine"
|
|
|
+ android:layout_marginTop="4dp"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/work_daily_detail_status_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="待审批"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:layout_marginBottom="0dp"
|
|
|
+ android:textSize="@dimen/text_hine"/>
|
|
|
+ </RelativeLayout>
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="5dp"
|
|
|
+ android:background="@color/item_line" />
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:text="工作总结"
|
|
|
+ android:textColor="#575757"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/work_daily_detail_summary_et"
|
|
|
+ style="@style/form_relative_right_text1"
|
|
|
+ android:text="总结啦"
|
|
|
+ android:textColor="#575757"
|
|
|
+ />
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/item_line"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="5dp"/>
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/work_daily_detail_plan_ll"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:visibility="visible">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:text="工作计划"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:textColor="#575757"
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/work_daily_detail_plan_tv"
|
|
|
+ style="@style/form_relative_right_text1"
|
|
|
+ android:textColor="#575757"
|
|
|
+ android:text="计划啦"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/item_line"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="5dp"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/work_daily_detail_experience_ll"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:visibility="visible">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="工作心得"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textColor="#575757"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/work_daily_detail_experience_tv"
|
|
|
+ style="@style/form_relative_right_text1"
|
|
|
+ android:textColor="#575757"
|
|
|
+ android:text="心得啦"
|
|
|
+ />
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/item_line"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="5dp"/>
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:visibility="visible">
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:background="#f6f5f5"
|
|
|
+ android:visibility="visible">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="已完成任务"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textColor="#575757"
|
|
|
+ android:visibility="visible"
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/work_daily_detail_no_task"
|
|
|
+ style="@style/form_relative_right_text1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="今天暂无分配工作任务"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:textColor="#575757"
|
|
|
+ android:visibility="visible"
|
|
|
+ />
|
|
|
+
|
|
|
+
|
|
|
+ <com.xzjmyk.pm.activity.view.MyListView
|
|
|
+ android:id="@+id/work_daily_detail_completedtask_lv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="#f6f5f5"
|
|
|
+ android:visibility="visible">
|
|
|
+ </com.xzjmyk.pm.activity.view.MyListView>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="未完成任务"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textColor="#575757"
|
|
|
+ android:visibility="visible"
|
|
|
+ />
|
|
|
+
|
|
|
+ <com.xzjmyk.pm.activity.view.MyListView
|
|
|
+ android:id="@+id/work_daily_detail_uncompletedtask_lv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="#f6f5f5"
|
|
|
+ android:visibility="visible">
|
|
|
+ </com.xzjmyk.pm.activity.view.MyListView>
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="5dp"
|
|
|
+ android:background="#EBE9E9"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:visibility="visible"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="10dp"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:visibility="visible"/>
|
|
|
+
|
|
|
+ <com.xzjmyk.pm.activity.view.MyListView
|
|
|
+ android:id="@+id/work_daily_detail_approval_flow_lv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:visibility="visible"
|
|
|
+ android:background="#ebe9e9"
|
|
|
+ >
|
|
|
+ </com.xzjmyk.pm.activity.view.MyListView>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ </com.xzjmyk.pm.activity.ui.erp.view.CustomerScrollView>
|
|
|
+
|
|
|
+</LinearLayout>
|