blob: 0eaf7b09706969fa08322066162ee223dda5a96b (
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
|
<LinearLayout
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"
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>
</LinearLayout>
|