diff options
Diffstat (limited to 'app/src/main/res/layout/page_status.xml')
-rw-r--r-- | app/src/main/res/layout/page_status.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/src/main/res/layout/page_status.xml b/app/src/main/res/layout/page_status.xml new file mode 100644 index 0000000..22faaf1 --- /dev/null +++ b/app/src/main/res/layout/page_status.xml | |||
@@ -0,0 +1,22 @@ | |||
1 | <LinearLayout | ||
2 | xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | xmlns:tools="http://schemas.android.com/tools" | ||
4 | android:layout_width="match_parent" | ||
5 | android:layout_height="match_parent" | ||
6 | android:orientation="vertical" | ||
7 | tools:context="org.pacien.tincapp.activities.StatusActivity"> | ||
8 | |||
9 | <ListView | ||
10 | android:id="@+id/node_list" | ||
11 | android:layout_width="match_parent" | ||
12 | android:layout_height="match_parent" | ||
13 | android:divider="@drawable/horizontal_line" | ||
14 | android:footerDividersEnabled="false" | ||
15 | android:headerDividersEnabled="false"/> | ||
16 | |||
17 | <TextView | ||
18 | android:id="@+id/node_list_empty" | ||
19 | style="@style/AppTheme.ListBlock.Placeholder" | ||
20 | android:text="@string/message_no_known_node"/> | ||
21 | |||
22 | </LinearLayout> | ||