22 lines
774 B
XML
22 lines
774 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/shape_dialog">
|
|
|
|
<TextView
|
|
android:id="@+id/tvMessage"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:paddingStart="25dp"
|
|
android:paddingTop="13dp"
|
|
android:paddingBottom="13dp"
|
|
android:paddingEnd="25dp"
|
|
android:textColor="@color/white_f6"
|
|
android:textSize="32sp"
|
|
tools:text="暂无数据" />
|
|
|
|
</FrameLayout> |