2012-02-04 19:23:41 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-01-05 21:53:40 +03:00
|
|
|
<!--
|
2012-05-13 18:13:13 +04:00
|
|
|
ownCloud Android client application
|
|
|
|
|
|
|
|
Copyright (C) 2012 Bartek Przybylski
|
2015-03-05 15:27:45 +03:00
|
|
|
Copyright (C) 2015 ownCloud Inc.
|
2013-02-07 21:45:10 +04:00
|
|
|
|
2012-05-13 18:13:13 +04:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
2013-04-17 14:26:13 +04:00
|
|
|
it under the terms of the GNU General Public License version 2,
|
|
|
|
as published by the Free Software Foundation.
|
2012-05-13 18:13:13 +04:00
|
|
|
|
|
|
|
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/>.
|
2015-01-05 21:53:40 +03:00
|
|
|
-->
|
|
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/drawer_layout"
|
2013-05-30 19:53:21 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-01-05 21:53:40 +03:00
|
|
|
android:clickable="true" >
|
|
|
|
|
|
|
|
<!-- The main content view -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-07-26 18:52:29 +03:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ProgressBar android:id="@+id/progressBar"
|
|
|
|
android:layout_width="match_parent"
|
2015-08-04 19:32:33 +03:00
|
|
|
android:layout_height="4dp"
|
2015-07-26 18:52:29 +03:00
|
|
|
android:padding="0dp"
|
|
|
|
android:layout_margin="0dp"
|
|
|
|
style="@style/Widget.ownCloud.TopProgressBar"
|
2015-08-04 19:32:33 +03:00
|
|
|
android:indeterminate="false"
|
|
|
|
android:indeterminateOnly="false"
|
|
|
|
android:background="@color/background_color"
|
|
|
|
android:visibility="visible"
|
2015-07-26 18:52:29 +03:00
|
|
|
/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2015-07-27 17:33:10 +03:00
|
|
|
android:layout_height="match_parent"
|
2015-07-26 18:52:29 +03:00
|
|
|
android:background="@color/background_color"
|
|
|
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:id="@+id/ListLayout"
|
|
|
|
android:contentDescription="@string/list_layout"
|
|
|
|
>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/left_fragment_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/right_fragment_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="2" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2015-01-05 21:53:40 +03:00
|
|
|
</LinearLayout>
|
|
|
|
|
2015-05-28 12:07:14 +03:00
|
|
|
<include
|
|
|
|
layout="@layout/drawer"
|
2015-05-26 12:46:15 +03:00
|
|
|
android:layout_width="240dp"
|
|
|
|
android:layout_height="match_parent"
|
2015-05-28 12:07:14 +03:00
|
|
|
android:layout_gravity="start"/>
|
2015-01-05 21:53:40 +03:00
|
|
|
|
2015-06-15 14:43:17 +03:00
|
|
|
</android.support.v4.widget.DrawerLayout>
|