24 lines
897 B
XML
24 lines
897 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:padding="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="140px">
|
|
<TextView
|
|
android:textSize="10sp"
|
|
android:textColor="@color/bg_98A5B6"
|
|
android:id="@+id/footer_text"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="没有更多啦!"
|
|
android:layout_centerInParent="true"/>
|
|
<ImageView
|
|
android:id="@+id/footer_loading"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/ic_loading"
|
|
android:layout_toLeftOf="@+id/header_text"
|
|
android:layout_centerInParent="true"
|
|
android:layout_toStartOf="@+id/header_text"/>
|
|
</RelativeLayout>
|