diff options
author | iNPUTmice <daniel@gultsch.de> | 2014-10-05 14:06:25 +0200 |
---|---|---|
committer | iNPUTmice <daniel@gultsch.de> | 2014-10-05 14:06:25 +0200 |
commit | b0574b289fce2a5d89f131829ea178e46b7d168b (patch) | |
tree | 4cc12de5bfeee4667e8597366864dbeb0a46d09f /res/layout-w960dp | |
parent | ddb76b0e7373cfc876a88520fbcf7667088a6316 (diff) |
made conversations overview list always 1/3 on tablet devices
Diffstat (limited to 'res/layout-w960dp')
-rw-r--r-- | res/layout-w960dp/fragment_conversations_overview.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/res/layout-w960dp/fragment_conversations_overview.xml b/res/layout-w960dp/fragment_conversations_overview.xml index 5309674b..2744f38e 100644 --- a/res/layout-w960dp/fragment_conversations_overview.xml +++ b/res/layout-w960dp/fragment_conversations_overview.xml @@ -2,11 +2,13 @@ android:id="@+id/content_view_ll" android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="horizontal"> + android:orientation="horizontal" + android:baselineAligned="false"> <LinearLayout - android:layout_width="320dp" + android:layout_width="0dp" android:layout_height="match_parent" + android:layout_weight="1" android:background="@color/primarybackground" android:orientation="vertical" > @@ -21,7 +23,8 @@ <LinearLayout android:id="@+id/selected_conversation" - android:layout_width="fill_parent" + android:layout_width="0dp" + android:layout_weight="2" android:layout_height="match_parent" android:orientation="vertical" > </LinearLayout> |