blob: 32e951edbbde46c55760e9f07d1be36e8aca1c7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_wrapper"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@drawable/horizontal_line"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false"/>
</android.support.v4.widget.SwipeRefreshLayout>
|