21 lines
698 B
XML
21 lines
698 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:padding="3dp">
|
|
<ProgressBar
|
|
android:id="@+id/listview_foot_progress"
|
|
android:layout_width="30dip"
|
|
android:layout_height="30dip"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/listview_foot_more"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:padding="5dp"
|
|
android:text="加载中..."/>
|
|
|
|
</LinearLayout> |