2014-11-18 16:51:49 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-03-05 15:27:45 +03:00
|
|
|
<!--
|
|
|
|
ownCloud Android client application
|
|
|
|
|
|
|
|
Copyright (C) 2015 ownCloud Inc.
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License version 2,
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
-->
|
2014-11-18 16:51:49 +03:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2016-03-23 17:47:06 +03:00
|
|
|
<include
|
|
|
|
layout="@layout/toolbar_standard" />
|
2015-08-05 14:43:23 +03:00
|
|
|
|
2014-11-18 16:51:49 +03:00
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
2016-10-07 03:46:04 +03:00
|
|
|
android:layout_height="@dimen/zero"
|
2014-11-18 16:51:49 +03:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:id="@+id/fragment_container" />
|
2016-07-21 14:45:43 +03:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:src="@drawable/uploader_list_separator"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-11-18 16:51:49 +03:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
2016-07-21 14:45:43 +03:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="@dimen/standard_padding">
|
2014-11-18 16:51:49 +03:00
|
|
|
|
2015-08-07 18:09:47 +03:00
|
|
|
<android.support.v7.widget.AppCompatButton
|
2014-11-18 16:51:49 +03:00
|
|
|
android:id="@+id/folder_picker_btn_cancel"
|
2015-08-12 19:54:27 +03:00
|
|
|
android:theme="@style/Button"
|
2014-11-18 16:51:49 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2016-07-21 14:45:43 +03:00
|
|
|
android:text="@string/common_cancel"
|
|
|
|
android:layout_marginRight="@dimen/standard_half_margin"/>
|
2014-11-18 16:51:49 +03:00
|
|
|
|
2015-08-07 18:09:47 +03:00
|
|
|
<android.support.v7.widget.AppCompatButton
|
2014-11-18 16:51:49 +03:00
|
|
|
android:id="@+id/folder_picker_btn_choose"
|
2015-08-12 19:54:27 +03:00
|
|
|
android:theme="@style/Button.Primary"
|
2014-11-18 16:51:49 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/folder_picker_choose_button_text" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|