<android.support.v4.widget.SwipeRefreshLayout
	xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:tools="http://schemas.android.com/tools"
	android:id="@+id/network_list_wrapper"
	android:layout_width="match_parent"
	android:layout_height="match_parent"
	android:orientation="vertical"
	tools:context="org.pacien.tincapp.activities.StartActivity">

	<ListView
		android:id="@+id/network_list"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:divider="@drawable/horizontal_line"
		android:footerDividersEnabled="false"
		android:headerDividersEnabled="false"/>

	<LinearLayout
		android:id="@+id/network_list_empty"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:orientation="vertical">

		<TextView
			style="@style/AppTheme.SectionTitle"
			android:text="@string/title_connect_to_network"/>

		<TextView
			style="@style/AppTheme.ListBlock.Placeholder"
			android:text="@string/message_no_network_configuration_found"/>

	</LinearLayout>

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