blob: 22faaf1407f16de27eb47a716f95db4103ff195c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<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.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"/>
</LinearLayout>
|