blob: 68bf78ff6f7d04ba01d920373ce2d2fe0b8a0b26 (
plain)
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
28
29
30
31
32
33
34
|
<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>
|