24 lines
821 B
XML
24 lines
821 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:gravity="center">
|
|
|
|
<ImageView
|
|
android:id="@+id/img_nodata_pic"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@mipmap/img_on_official"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:layout_marginBottom="8dp"
|
|
android:text="@string/im_no_sys_msg"
|
|
android:textColor="@color/gray1"
|
|
android:textSize="14sp"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout> |