mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 13:45:35 +03:00
32 lines
No EOL
1 KiB
XML
32 lines
No EOL
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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="horizontal" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/file_list_container"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
</LinearLayout>
|
|
|
|
<fragment
|
|
android:id="@+id/fileDetail"
|
|
android:layout_width="0dp"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="2"
|
|
class="eu.alefzero.owncloud.ui.fragment.FileDetail" >
|
|
|
|
<!-- Preview: layout=@layout/file_details -->
|
|
</fragment>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |