diff options
Diffstat (limited to '')
-rw-r--r-- | src/main/res/layout-w945dp/activity_conversations.xml | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/src/main/res/layout-w945dp/activity_conversations.xml b/src/main/res/layout-w945dp/activity_conversations.xml index cb5f2ccad..7cd5b36c4 100644 --- a/src/main/res/layout-w945dp/activity_conversations.xml +++ b/src/main/res/layout-w945dp/activity_conversations.xml @@ -3,20 +3,28 @@ <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="horizontal"> + android:orientation="vertical"> - <FrameLayout - android:id="@+id/main_fragment" - android:layout_width="0dp" - android:layout_height="match_parent" - android:layout_weight="1000" /> + <include + android:id="@+id/toolbar" + layout="@layout/toolbar" /> - <FrameLayout - android:id="@+id/secondary_fragment" - android:layout_width="0dp" - android:layout_height="match_parent" - android:layout_weight="1618" /> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="match_parent"> - </LinearLayout> + <FrameLayout + android:id="@+id/main_fragment" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="1000" /> + + <FrameLayout + android:id="@+id/secondary_fragment" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="1618" /> + </LinearLayout> + </LinearLayout> </layout>
\ No newline at end of file |