2013-02-25 15:24:14 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
ownCloud Android client application
|
|
|
|
|
2015-03-05 15:27:45 +03:00
|
|
|
Copyright (C) 2015 ownCloud Inc.
|
2013-02-25 15:24:14 +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.
|
2013-02-25 15:24:14 +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/>.
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!--
|
|
|
|
ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/fdScrollView"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-10-11 17:08:32 +04:00
|
|
|
android:background="@color/background_color"
|
2013-02-25 15:24:14 +04:00
|
|
|
android:gravity="center_horizontal"
|
|
|
|
-->
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/top"
|
2015-05-18 15:29:00 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-03-18 17:52:05 +04:00
|
|
|
android:background="#000000"
|
2013-02-25 15:24:14 +04:00
|
|
|
tools:context=".ui.fragment.PreviewImageFragment" >
|
|
|
|
|
2013-03-01 13:49:35 +04:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressWheel"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:indeterminateOnly="true"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
/>
|
2015-07-11 10:18:26 +03:00
|
|
|
|
2015-03-06 11:07:44 +03:00
|
|
|
<third_parties.michaelOrtiz.TouchImageViewCustom
|
2013-02-25 15:24:14 +04:00
|
|
|
android:id="@+id/image"
|
2014-07-28 13:11:28 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2013-02-28 20:09:00 +04:00
|
|
|
android:layout_margin="0dp"
|
2013-03-01 12:54:49 +04:00
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:contentDescription="@string/preview_image_description"
|
|
|
|
android:src="@drawable/image_fail" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/message"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
2015-05-18 15:29:00 +03:00
|
|
|
android:layout_alignParentBottom="true"
|
2013-03-01 12:54:49 +04:00
|
|
|
android:layout_margin="40dp"
|
|
|
|
android:text="@string/placeholder_sentence"
|
2015-05-18 15:29:00 +03:00
|
|
|
android:textColor="@color/owncloud_blue_bright"
|
2013-03-01 12:54:49 +04:00
|
|
|
/>
|
2015-07-11 10:18:26 +03:00
|
|
|
|
2013-02-25 15:24:14 +04:00
|
|
|
</RelativeLayout>
|