NavinfoOutDoor/app/src/main/res/layout/has_sumit_item.xml
2021-07-30 19:00:24 +08:00

38 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tv_has_name"
android:textStyle="bold"
android:textColor="@color/black"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:text="11111111111"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tv_createTime"
app:layout_constraintTop_toBottomOf="@+id/tv_has_name"
android:text="111111"
app:layout_constraintLeft_toLeftOf="@+id/tv_has_name"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="@+id/tv_has_name"
app:layout_constraintRight_toRightOf="parent"
android:id="@+id/tv_auditStatus"
android:text="1111"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2222"
app:layout_constraintTop_toTopOf="@+id/tv_createTime"
android:id="@+id/tv_auditMsg"
app:layout_constraintRight_toRightOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>