2011-08-20 00:37:35 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-01-14 03:31:56 +04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:background="#F7F7F7"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout1"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/actionBar"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
2012-01-22 22:05:47 +04:00
|
|
|
class="eu.alefzero.owncloud.ui.fragment.ActionBar">
|
2012-01-14 03:31:56 +04:00
|
|
|
<!-- Preview: layout=@layout/action_bar -->
|
|
|
|
</fragment>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout2"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/fileList"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
2012-01-22 22:05:47 +04:00
|
|
|
class="eu.alefzero.owncloud.ui.fragment.FileList" >
|
2012-01-14 03:31:56 +04:00
|
|
|
|
|
|
|
<!-- Preview: layout=@layout/list_layout -->
|
|
|
|
</fragment>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/fileDetail"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="2"
|
|
|
|
class="eu.alefzero.owncloud.FileDetail" >
|
|
|
|
|
|
|
|
<!-- Preview: layout=@layout/file_details -->
|
|
|
|
</fragment>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|