<?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="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:drawableTop="@mipmap/sub_success"
|
android:text="信息提交成功,等待平台审核~"
|
style="@style/style_common_text"
|
android:textStyle="bold"
|
android:drawablePadding="27dp"
|
android:layout_marginTop="120dp"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|