0c94456b7eef2317a6a21c930af0be01630c28e1
[pub/Android/ownCloud.git] / res / layout / files.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 <LinearLayout
15 android:id="@+id/linearLayout2"
16 android:layout_width="fill_parent"
17 android:layout_height="wrap_content" >
18
19 <fragment
20 android:id="@+id/fileList"
21 android:layout_width="0dp"
22 android:layout_height="fill_parent"
23 android:layout_weight="1"
24 class="eu.alefzero.owncloud.ui.fragment.FileList" >
25
26 <!-- Preview: layout=@layout/list_layout -->
27 </fragment>
28
29 <fragment
30 android:id="@+id/fileDetail"
31 android:layout_width="0dp"
32 android:layout_height="fill_parent"
33 android:layout_weight="2"
34 class="eu.alefzero.owncloud.ui.fragment.FileDetail" >
35
36 <!-- Preview: layout=@layout/file_details -->
37 </fragment>
38 </LinearLayout>
39 </LinearLayout>
40
41 </LinearLayout>