diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-12-28 13:56:45 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-12-28 13:56:45 +0100 |
commit | 2dde271d7058e989fccbee3d2e9c09ee3cc77b27 (patch) | |
tree | f6b418c5bc6cc26d9de961bce77261dcb6b943c3 /res/layout-sw600dp | |
parent | 59d82987c594cf6cbf9e1fb9cd0be222fec81b16 (diff) |
lint fixes
--HG--
extra : rebase_source : 3255789b1dc3b39dddf101f46ac78d68b01ec5e4
Diffstat (limited to 'res/layout-sw600dp')
-rw-r--r-- | res/layout-sw600dp/log_fragment.xml | 41 |
1 files changed, 18 insertions, 23 deletions
diff --git a/res/layout-sw600dp/log_fragment.xml b/res/layout-sw600dp/log_fragment.xml index d8e8562f..c4e1355c 100644 --- a/res/layout-sw600dp/log_fragment.xml +++ b/res/layout-sw600dp/log_fragment.xml @@ -3,35 +3,30 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="vertical" + android:orientation="horizontal" + android:padding="20dp" tools:context=".LogWindow"> + <LinearLayout - android:padding="20dp" + android:minWidth="300dp" + android:orientation="vertical" android:layout_width="wrap_content" - android:orientation="horizontal" android:layout_height="match_parent"> - <LinearLayout - android:minWidth="300dp" - android:orientation="vertical" - android:layout_width="wrap_content" - android:layout_height="match_parent"> - - <include layout="@layout/log_silders"/> + <include layout="@layout/log_silders"/> - <include layout="@layout/vpnstatus"/> - </LinearLayout> + <include layout="@layout/vpnstatus"/> + </LinearLayout> - <Space - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:minWidth="5dp"/> + <Space + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:minWidth="5dp"/> - <ListView - android:id="@android:id/list" - android:transcriptMode="normal" - android:layout_width="fill_parent" - android:layout_height="match_parent"/> - </LinearLayout> -</LinearLayout>
\ No newline at end of file + <ListView + android:id="@android:id/list" + android:transcriptMode="normal" + android:layout_width="fill_parent" + android:layout_height="match_parent"/> +</LinearLayout> |