You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="380dp"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:clickable="true"
- android:padding="10dp">
-
- <androidx.appcompat.widget.LinearLayoutCompat
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:background="@drawable/shape_leave_item"
- android:padding="1dp">
-
-
- <FrameLayout
- android:layout_height="match_parent"
- android:layout_width="wrap_content"
- android:text="人脸">
-
- <ImageView
- android:id="@+id/faceImg"
- android:layout_width="132dp"
- android:layout_height="151dp"
- app:qmui_border_color="@color/white"
- app:qmui_radius="0dp"/>
-
- <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
- android:id="@+id/faceEmpty"
- android:layout_width="132dp"
- android:layout_height="151dp"
- android:paddingTop="@dimen/d_5"
- android:paddingBottom="@dimen/d_5"
- android:text="未设置"
- android:textColor="@color/white"
- app:qmui_backgroundColor="#ccc"
- app:qmui_borderColor="#ccc"
- app:qmui_radius="1px" />
- </FrameLayout>
- <androidx.appcompat.widget.LinearLayoutCompat
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:layout_marginLeft="20dp"
- android:orientation="vertical"
- android:paddingBottom="@dimen/d_10"
- android:paddingTop="10dp">
- <TextView
- android:id="@+id/studentName"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:textSize="20dp"
- android:includeFontPadding="false"
- android:text="李晓晓"/>
- <TextView
- android:id="@+id/className"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textSize="16dp"
- android:layout_marginTop="@dimen/d_10"
- android:text="高中三年级一班"/>
- <TextView
- android:id="@+id/applyTime"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textSize="16dp"
- android:text="2024-1-4 15:57"/>
- <View
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"/>
- <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
- android:id="@+id/statusName"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingHorizontal="@dimen/d_20"
- android:paddingVertical="@dimen/d_6"
- android:textColor="#fff"
- app:qmui_backgroundColor="#ff4040"
- android:text="已确认"
- app:qmui_radius="@dimen/d_20" />
- </androidx.appcompat.widget.LinearLayoutCompat>
- </androidx.appcompat.widget.LinearLayoutCompat>
-
- </LinearLayout>
|