fragment_room.xml 767 Bytes
Newer Older
Yusuke Iwaki's avatar
Yusuke Iwaki committed
1
<?xml version="1.0" encoding="utf-8"?>
2
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 4 5 6 7
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="chat.rocket.android.fragment.chatroom.RoomFragment">
Yusuke Iwaki's avatar
Yusuke Iwaki committed
8

Tiago Cunha's avatar
Tiago Cunha committed
9
    <include layout="@layout/fragment_room_main" />
10

11
    <FrameLayout
12 13 14 15 16
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="end"
        android:clickable="true"
        android:theme="@style/AppTheme.Dark">
17

Tiago Cunha's avatar
Tiago Cunha committed
18
        <include layout="@layout/room_side_menu" />
19
    </FrameLayout>
20
</android.support.v4.widget.DrawerLayout>