电子屏项目
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

126 lignes
4.6 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:orientation="vertical">
  7. <androidx.appcompat.widget.LinearLayoutCompat
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:gravity="center_vertical"
  11. android:orientation="horizontal"
  12. android:paddingTop="@dimen/d_12"
  13. android:paddingBottom="@dimen/d_12">
  14. <TextView
  15. android:id="@+id/userName"
  16. style="@style/table_cell"
  17. android:layout_weight="1.5"
  18. android:paddingStart="@dimen/dp_40"
  19. android:text="请假学生" />
  20. <FrameLayout
  21. style="@style/table_cell"
  22. android:layout_weight="1">
  23. <com.qmuiteam.qmui.widget.QMUIRadiusImageView
  24. android:id="@+id/faceImg"
  25. android:layout_width="@dimen/d_70"
  26. android:layout_height="@dimen/d_70"
  27. app:qmui_border_color="@color/white"
  28. app:qmui_corner_radius="@dimen/d_5" />
  29. <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
  30. android:id="@+id/faceEmpty"
  31. android:layout_width="@dimen/d_70"
  32. android:layout_height="@dimen/d_70"
  33. android:paddingTop="@dimen/d_5"
  34. android:paddingBottom="@dimen/d_5"
  35. android:text="未设置"
  36. android:textColor="@color/white"
  37. app:qmui_backgroundColor="#ccc"
  38. app:qmui_borderColor="#ccc"
  39. app:qmui_radius="@dimen/d_5" />
  40. </FrameLayout>
  41. <FrameLayout
  42. style="@style/table_cell"
  43. android:layout_weight="1">
  44. <com.qmuiteam.qmui.widget.QMUIRadiusImageView
  45. android:id="@+id/healthCodeImg"
  46. android:layout_width="@dimen/d_70"
  47. android:layout_height="@dimen/d_70"
  48. app:qmui_border_color="@color/white"
  49. app:qmui_corner_radius="@dimen/d_5" />
  50. <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
  51. android:id="@+id/healthCodeEmpty"
  52. android:layout_width="@dimen/d_70"
  53. android:layout_height="@dimen/d_70"
  54. android:paddingTop="@dimen/d_5"
  55. android:paddingBottom="@dimen/d_5"
  56. android:text="未上传"
  57. android:textColor="@color/white"
  58. app:qmui_backgroundColor="#ccc"
  59. app:qmui_borderColor="#ccc"
  60. app:qmui_radius="@dimen/d_5" />
  61. </FrameLayout>
  62. <FrameLayout
  63. style="@style/table_cell"
  64. android:layout_weight="1">
  65. <com.qmuiteam.qmui.widget.QMUIRadiusImageView
  66. android:id="@+id/tripCodeImg"
  67. android:layout_width="@dimen/d_70"
  68. android:layout_height="@dimen/d_70"
  69. app:qmui_border_color="@color/white"
  70. app:qmui_corner_radius="@dimen/d_5" />
  71. <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
  72. android:id="@+id/tripCodeEmpty"
  73. android:layout_width="@dimen/d_70"
  74. android:layout_height="@dimen/d_70"
  75. android:paddingTop="@dimen/d_5"
  76. android:paddingBottom="@dimen/d_5"
  77. android:text="未上传"
  78. android:textColor="@color/white"
  79. app:qmui_backgroundColor="#ccc"
  80. app:qmui_borderColor="#ccc"
  81. app:qmui_radius="@dimen/d_5" />
  82. </FrameLayout>
  83. <TextView
  84. android:id="@+id/isDrive"
  85. style="@style/table_cell"
  86. android:layout_weight="1"
  87. android:text="是否驾车" />
  88. <TextView
  89. android:id="@+id/receptionUser"
  90. style="@style/table_cell"
  91. android:layout_weight="1"
  92. android:text="接待人"/>
  93. <TextView
  94. android:id="@+id/statusName"
  95. style="@style/table_cell"
  96. android:layout_weight="1"
  97. android:text="状态" />
  98. <TextView
  99. android:id="@+id/applyTime"
  100. style="@style/table_cell"
  101. android:layout_weight="1"
  102. android:text="申请时间" />
  103. </androidx.appcompat.widget.LinearLayoutCompat>
  104. <View
  105. android:id="@+id/bottomLine"
  106. android:layout_width="match_parent"
  107. android:layout_height="1px"
  108. android:background="@color/backgroundColor" />
  109. </LinearLayout>