aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/page_status.xml
blob: cd80d0b86bc63772842107e812f641fa20bee17e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<android.support.v4.widget.SwipeRefreshLayout
	xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:tools="http://schemas.android.com/tools"
	android:layout_width="match_parent"
	android:layout_height="match_parent"
	android:orientation="vertical"
	android:id="@+id/node_list_wrapper"
	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"/>

	<TextView
		android:id="@+id/node_list_empty"
		style="@style/AppTheme.ListBlock.Placeholder"
		android:text="@string/message_no_known_node"/>

</android.support.v4.widget.SwipeRefreshLayout>