张海江
2017-08-14 b992fdbaefeed93da99310e17bda2bc4ab7db811
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/loading_view"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:gravity="center"
    android:orientation="vertical">
 
    <ViewStub
        android:id="@+id/loading_viewstub"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout="@layout/sample_common_list_footer_loading" />
 
    <ViewStub
        android:id="@+id/end_viewstub"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout="@layout/sample_common_list_footer_end" />
 
    <ViewStub
        android:id="@+id/network_error_viewstub"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout="@layout/sample_common_list_footer_network_error" />
 
</LinearLayout>