activity_common_docui.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/bg_main"
  6. android:orientation="vertical">
  7. <com.xzjmyk.pm.activity.ui.erp.view.CustomerScrollView
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:layout_weight="1"
  11. android:fillViewport="true"
  12. android:scrollbars="none">
  13. <LinearLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:focusable="true"
  17. android:focusableInTouchMode="true"
  18. android:orientation="vertical">
  19. <RelativeLayout
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:padding="5dp"
  23. android:layout_marginLeft="10dp"
  24. android:layout_marginRight="10dp"
  25. >
  26. <ImageView
  27. android:id="@+id/common_docui_photo_img"
  28. android:layout_width="45dp"
  29. android:layout_height="45dp"
  30. android:src="@drawable/common_header_boy"
  31. android:contentDescription="@string/app_name"
  32. android:layout_marginTop="5dp"
  33. android:layout_marginBottom="5dp" />
  34. <TextView
  35. android:id="@+id/common_docui_name_tv"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:layout_marginLeft="5dp"
  39. android:layout_toRightOf="@+id/common_docui_photo_img"
  40. android:textColor="#575757"
  41. android:textSize="@dimen/text_hine"
  42. android:layout_marginTop="10dp"
  43. />
  44. <TextView
  45. android:id="@+id/common_docui_Section_tv"
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:layout_marginLeft="5dp"
  49. android:layout_toRightOf="@+id/common_docui_photo_img"
  50. android:layout_below="@id/common_docui_name_tv"
  51. android:textColor="@color/text_main"
  52. android:textSize="@dimen/text_hine"
  53. android:layout_marginTop="4dp"/>
  54. <TextView
  55. android:id="@+id/common_docui_status_tv"
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:layout_alignParentRight="true"
  59. android:layout_marginTop="5dp"
  60. android:layout_marginBottom="0dp"
  61. android:textSize="@dimen/text_hine"/>
  62. </RelativeLayout>
  63. <View
  64. android:layout_width="match_parent"
  65. android:layout_height="1dp"
  66. android:background="@color/item_line"
  67. android:layout_marginLeft="10dp"
  68. android:layout_marginRight="10dp"/>
  69. <LinearLayout
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content"
  72. android:orientation="vertical"
  73. android:layout_marginLeft="10dp"
  74. android:layout_marginRight="10dp">
  75. <com.xzjmyk.pm.activity.view.MyListView
  76. android:id="@+id/common_docui_apply_msg_lv"
  77. android:layout_width="match_parent"
  78. android:layout_height="wrap_content">
  79. </com.xzjmyk.pm.activity.view.MyListView>
  80. </LinearLayout>
  81. <View
  82. android:layout_width="match_parent"
  83. android:layout_height="10dp"
  84. android:background="@color/item_line"
  85. android:layout_marginTop="5dp"
  86. android:visibility="visible"/>
  87. <com.xzjmyk.pm.activity.view.MyListView
  88. android:id="@+id/common_docui_approval_flow_lv"
  89. android:layout_width="match_parent"
  90. android:layout_height="wrap_content"
  91. android:visibility="visible"
  92. >
  93. </com.xzjmyk.pm.activity.view.MyListView>
  94. </LinearLayout>
  95. </com.xzjmyk.pm.activity.ui.erp.view.CustomerScrollView>
  96. </LinearLayout>