<?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:layout_marginTop="80dp"
|
android:drawableTop="@mipmap/success"
|
android:text="修改成功"
|
android:textStyle="bold"
|
android:textColor="@color/textColor"
|
android:textSize="16sp"
|
android:drawablePadding="22dp"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|