diff options
author | Arne Schwabe <arne@rfc2549.org> | 2014-11-17 12:49:01 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2014-11-17 12:49:01 +0100 |
commit | 16d429817229153e1edf8f9b06a49502ea234a4c (patch) | |
tree | 41b912353564c99669740ce51f6cc4c197c36f4d /main/src | |
parent | 2ed9ea6dbcd112397a467a0a39f7ca4c0b670cc0 (diff) |
Minor fixes in layout for 5.0
--HG--
extra : rebase_source : ae066b2207f54b2fc8b52929e3e1a8a8488dce64
Diffstat (limited to 'main/src')
-rw-r--r-- | main/src/main/res/layout-sw600dp-port/log_fragment.xml | 6 | ||||
-rw-r--r-- | main/src/main/res/layout-sw600dp/log_fragment.xml | 7 | ||||
-rw-r--r-- | main/src/main/res/layout/log_fragment.xml | 10 |
3 files changed, 12 insertions, 11 deletions
diff --git a/main/src/main/res/layout-sw600dp-port/log_fragment.xml b/main/src/main/res/layout-sw600dp-port/log_fragment.xml index 33a895eb..1fb9fa54 100644 --- a/main/src/main/res/layout-sw600dp-port/log_fragment.xml +++ b/main/src/main/res/layout-sw600dp-port/log_fragment.xml @@ -12,6 +12,8 @@ tools:context=".LogWindow"> <LinearLayout + android:background="@drawable/white_rect" + android:elevation="1dp" android:layout_height="wrap_content" android:layout_width="match_parent"> @@ -33,10 +35,6 @@ android:layout_weight="1"/> </LinearLayout> - <Space - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:minHeight="5dp"/> <ListView android:id="@android:id/list" diff --git a/main/src/main/res/layout-sw600dp/log_fragment.xml b/main/src/main/res/layout-sw600dp/log_fragment.xml index 12897181..0bd3f991 100644 --- a/main/src/main/res/layout-sw600dp/log_fragment.xml +++ b/main/src/main/res/layout-sw600dp/log_fragment.xml @@ -14,6 +14,8 @@ <LinearLayout + android:background="@drawable/white_rect" + android:elevation="1dp" android:minWidth="300dp" android:orientation="vertical" android:layout_width="wrap_content" @@ -24,11 +26,6 @@ <include layout="@layout/vpnstatus"/> </LinearLayout> - <Space - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:minWidth="5dp"/> - <ListView android:id="@android:id/list" android:transcriptMode="normal" diff --git a/main/src/main/res/layout/log_fragment.xml b/main/src/main/res/layout/log_fragment.xml index c1c9bbc1..6271ef1b 100644 --- a/main/src/main/res/layout/log_fragment.xml +++ b/main/src/main/res/layout/log_fragment.xml @@ -11,19 +11,25 @@ android:orientation="vertical"> <LinearLayout + android:background="@drawable/white_rect" + android:elevation="1dp" android:layout_height="wrap_content" android:layout_width="match_parent"> <include layout="@layout/log_silders"/> - </LinearLayout> - <TextView + <TextView android:text="@string/speed_waiting" android:singleLine="true" android:id="@+id/speed" tools:ignore="InconsistentLayout" android:layout_width="match_parent" android:layout_height="wrap_content"/> + </LinearLayout> + + + + <ListView android:id="@android:id/list" |