cddcacb1a0ef6b2e64c18fb45d017939dfb84f00
[pub/Android/ownCloud.git] / res / layout / main.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent"
5 android:background="#F7F7F7"
6 android:orientation="vertical" >
7
8 <LinearLayout
9 android:id="@+id/linearLayout1"
10 android:layout_width="fill_parent"
11 android:layout_height="fill_parent"
12 android:orientation="vertical" >
13
14 <fragment
15 android:id="@+id/actionBar"
16 android:layout_height="wrap_content"
17 android:layout_width="fill_parent"
18 class="eu.alefzero.owncloud.ui.fragment.ActionBar">
19 <!-- Preview: layout=@layout/action_bar -->
20 </fragment>
21
22 <LinearLayout
23 android:id="@+id/linearLayout2"
24 android:layout_width="fill_parent"
25 android:layout_height="wrap_content" >
26
27 <fragment
28 android:id="@+id/fileList"
29 android:layout_width="0dp"
30 android:layout_height="fill_parent"
31 android:layout_weight="1"
32 class="eu.alefzero.owncloud.ui.fragment.FileList" >
33
34 <!-- Preview: layout=@layout/list_layout -->
35 </fragment>
36
37 <fragment
38 android:id="@+id/fileDetail"
39 android:layout_width="0dp"
40 android:layout_height="fill_parent"
41 android:layout_weight="2"
42 class="eu.alefzero.owncloud.FileDetail" >
43
44 <!-- Preview: layout=@layout/file_details -->
45 </fragment>
46 </LinearLayout>
47 </LinearLayout>
48
49 </LinearLayout>