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.
77 lines
3.1 KiB
77 lines
3.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="@dimen/sw_12dp"
|
|
android:layout_marginVertical="@dimen/sw_5dp"
|
|
android:background="@drawable/bg_white_round_4"
|
|
android:paddingHorizontal="@dimen/sw_14dp"
|
|
android:paddingTop="@dimen/sw_10dp"
|
|
android:paddingBottom="@dimen/sw_12dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tvName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/text_color_20"
|
|
android:textSize="@dimen/sw_13sp"
|
|
android:textStyle="bold"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="单位测量资质报验单" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvNo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/text_color_727778"
|
|
android:textSize="@dimen/sw_12sp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/tvName"
|
|
tools:text="XMBH2021-00001" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvStartTimeKey"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/sw_12dp"
|
|
android:text="发起时间:"
|
|
android:textColor="@color/text_color_404145"
|
|
android:textSize="@dimen/sw_12sp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/tvNo" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvStartTime"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/text_color_20"
|
|
android:textSize="@dimen/sw_12sp"
|
|
app:layout_constraintBaseline_toBaselineOf="@id/tvStartTimeKey"
|
|
app:layout_constraintStart_toEndOf="@id/tvStartTimeKey"
|
|
tools:text="2022-06-10 09:27:49" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvEndTimeKey"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/sw_4dp"
|
|
android:text="结束时间:"
|
|
android:textColor="@color/text_color_404145"
|
|
android:textSize="@dimen/sw_12sp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/tvStartTimeKey" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvEndTime"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/text_color_20"
|
|
android:textSize="@dimen/sw_12sp"
|
|
app:layout_constraintBaseline_toBaselineOf="@id/tvEndTimeKey"
|
|
app:layout_constraintStart_toEndOf="@id/tvEndTimeKey"
|
|
tools:text="2022-06-10 09:27:49" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |