| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?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/bg_main"
- 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">
- <RelativeLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="5dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- >
- <ImageView
- android:id="@+id/common_docui_photo_img"
- android:layout_width="45dp"
- android:layout_height="45dp"
- android:src="@drawable/common_header_boy"
- android:contentDescription="@string/app_name"
- android:layout_marginTop="5dp"
- android:layout_marginBottom="5dp" />
- <TextView
- android:id="@+id/common_docui_name_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:layout_toRightOf="@+id/common_docui_photo_img"
- android:textColor="#575757"
- android:textSize="@dimen/text_hine"
- android:layout_marginTop="10dp"
- />
- <TextView
- android:id="@+id/common_docui_Section_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:layout_toRightOf="@+id/common_docui_photo_img"
- android:layout_below="@id/common_docui_name_tv"
- android:textColor="@color/text_main"
- android:textSize="@dimen/text_hine"
- android:layout_marginTop="4dp"/>
- <TextView
- android:id="@+id/common_docui_status_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- 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="1dp"
- android:background="@color/item_line"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp">
- <com.xzjmyk.pm.activity.view.MyListView
- android:id="@+id/common_docui_apply_msg_lv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- </com.xzjmyk.pm.activity.view.MyListView>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="10dp"
- android:background="@color/item_line"
- android:layout_marginTop="5dp"
- android:visibility="visible"/>
- <com.xzjmyk.pm.activity.view.MyListView
- android:id="@+id/common_docui_approval_flow_lv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:visibility="visible"
- >
- </com.xzjmyk.pm.activity.view.MyListView>
- </LinearLayout>
- </com.xzjmyk.pm.activity.ui.erp.view.CustomerScrollView>
- </LinearLayout>
|