diff options
Diffstat (limited to 'res/layout-sw600dp/log_fragment.xml')
-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> |