list_footer.xml
1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<com.ivt.plus.widget.PullToLoadMoreFooterView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@null"
android:clickable="true"
android:orientation="horizontal">
<RelativeLayout
android:id="@+id/vg_footer_container"
android:layout_width="fill_parent"
android:layout_height="@dimen/overscroll_listview_header_height">
<ProgressBar
android:id="@+id/pb_loading"
style="?android:attr/progressBarStyleLarge"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_centerVertical="true"
android:layout_gravity="center_vertical"
android:layout_marginRight="12dip"
android:layout_toLeftOf="@+id/tv_load_more"
android:indeterminate="true"
android:visibility="gone" />
<TextView
android:id="@id/tv_load_more"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
android:gravity="center"
android:text="查看更多"
android:textColor="#ff000000"
android:textSize="16sp" />
</RelativeLayout>
</com.ivt.plus.widget.PullToLoadMoreFooterView>