mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 14:15:44 +03:00
55 lines
No EOL
2 KiB
XML
55 lines
No EOL
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
ownCloud Android client application
|
|
|
|
Copyright (C) 2011 Bartek Przybylski
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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="fill_parent"
|
|
android:layout_weight="1" >
|
|
|
|
<fragment
|
|
android:id="@+id/fileList"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
class="eu.alefzero.owncloud.ui.fragment.FileListFragment" >
|
|
|
|
<!-- Preview: layout=@layout/list_layout -->
|
|
</fragment>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/file_details_container"
|
|
android:layout_width="0dp"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="2" >
|
|
|
|
<fragment
|
|
android:id="@+id/fileDetail"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
class="eu.alefzero.owncloud.ui.fragment.FileDetailFragment" >
|
|
|
|
<!-- Preview: layout=@layout/file_details_empty -->
|
|
</fragment>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |