view_empty_layout.xml 1.35 KB
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/empty"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFFFFFFF"
    android:gravity="center"
    android:orientation="vertical">

    <LinearLayout
        android:id="@+id/empty_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:orientation="horizontal">

        <ProgressBar
            android:id="@+id/empty_progressbar"
            android:layout_width="32dp"
            android:layout_height="32dp" />

        <TextView
            android:id="@+id/empty_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="@string/string_loading"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="@color/color_95" />

    </LinearLayout>

    <Button
        android:id="@+id/empty_button"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/click_refresh"
        android:textColor="#a9a9a9"
        android:visibility="gone" />

</RelativeLayout>