blob: bc68ea1af7bc75525f65672594fb0135a3a15ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/node_list_wrapper"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="org.pacien.tincapp.activities.StatusActivity">
<ListView
android:id="@+id/node_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>
|