Files
Android-key-of-love/app/src/main/res/layout/item_loading_footer.xml

23 lines
718 B
XML
Raw Normal View History

2026-01-08 14:56:20 +08:00
<?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="wrap_content"
android:gravity="center"
android:paddingTop="14dp"
android:paddingBottom="14dp">
<ProgressBar
android:id="@+id/progress"
android:layout_width="20dp"
android:layout_height="20dp" />
<TextView
android:id="@+id/tvLoading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:text="Loading..."
android:textSize="12sp"
android:textColor="#666666" />
</LinearLayout>