mirror of
https://github.com/nextcloud/android.git
synced 2024-12-21 08:24:08 +03:00
61 lines
No EOL
2 KiB
XML
61 lines
No EOL
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
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/>.
|
|
|
|
-->
|
|
|
|
<!--
|
|
ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/fdScrollView"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="@color/background_color"
|
|
android:gravity="center_horizontal"
|
|
-->
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ui.fragment.PreviewImageFragment">
|
|
|
|
|
|
<third_parties.michaelOrtiz.TouchImageViewCustom
|
|
android:id="@+id/image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerInParent="true"
|
|
android:layout_margin="@dimen/zero"
|
|
android:contentDescription="@string/preview_image_description"
|
|
android:src="@drawable/image_fail"/>
|
|
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/multi_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<include layout="@layout/empty_list"/>
|
|
|
|
</ScrollView>
|
|
</RelativeLayout>
|
|
|
|
|
|
</RelativeLayout> |