diff options
author | Fup Duck <fupduck@sacknagel.com> | 2018-02-06 18:06:38 +0100 |
---|---|---|
committer | Fup Duck <fupduck@sacknagel.com> | 2018-02-06 18:06:38 +0100 |
commit | 43fd861a1404293185bced6095410900c2417b65 (patch) | |
tree | 03326353b89b6327024ee0ee03b03b622e753279 /app/src/main/res/layout-sw600dp-port | |
parent | 8bb96b0116994897ca75ad8eb1d6c412e7d3ce40 (diff) | |
parent | edd34192484f4eb618fdcc2a68b18168c155d63c (diff) |
8827 - remove UserStatus references
Diffstat (limited to 'app/src/main/res/layout-sw600dp-port')
-rw-r--r-- | app/src/main/res/layout-sw600dp-port/f_log.xml | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/app/src/main/res/layout-sw600dp-port/f_log.xml b/app/src/main/res/layout-sw600dp-port/f_log.xml index da46450c..4ee64811 100644 --- a/app/src/main/res/layout-sw600dp-port/f_log.xml +++ b/app/src/main/res/layout-sw600dp-port/f_log.xml @@ -5,9 +5,30 @@ --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:orientation="vertical" - android:padding="@dimen/activity_margin"> + android:layout_width="match_parent" + android:layout_height="match_parent" + xmlns:tools="http://schemas.android.com/tools" + android:orientation="vertical" + android:padding="@dimen/activity_margin" + android:id="@+id/log_layout"> + + <LinearLayout + android:background="@drawable/white_rect" + android:elevation="1dp" + android:minWidth="300dp" + android:orientation="vertical" + android:layout_width="wrap_content" + android:layout_height="match_parent"> + + <include layout="@layout/log_silders"/> + + <include layout="@layout/vpnstatus"/> + </LinearLayout> + + <ListView + android:id="@android:id/list" + android:transcriptMode="normal" + android:layout_width="fill_parent" + android:layout_height="match_parent"/> </LinearLayout>
\ No newline at end of file |