made conversations overview list always 1/3 on tablet devices

iNPUTmice created

Change summary

res/layout-w960dp/fragment_conversations_overview.xml | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

Detailed changes

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>