blob: 06c6ef51413a2493c0736d89811969ec4c9eb5d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity"
tools:ignore="MergeRootFrame"
android:background="#000000">
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.v4.view.ViewPager
android:id="@+id/windowPager"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_weight="1">
</android.support.v4.view.ViewPager>
<ListView
android:id="@+id/windowList"
android:layout_width="160dp"
android:layout_height="match_parent"
android:layout_gravity="left"
>
</ListView>
<!--
<ListView
android:id="@+id/messagesList"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_weight="1"
>
</ListView>
-->
</android.support.v4.widget.DrawerLayout>
</LinearLayout>
|