2013-02-14 22:21:09 +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-14 22:21:09 +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-14 22:21:09 +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/>.
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/top"
|
2013-03-08 16:32:10 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2013-10-11 17:08:32 +04:00
|
|
|
android:background="@color/background_color"
|
2013-02-14 22:21:09 +04:00
|
|
|
android:gravity="center"
|
2014-10-17 18:29:38 +04:00
|
|
|
tools:context=".ui.fragment.FilePreviewFragment">
|
2013-02-14 22:21:09 +04:00
|
|
|
|
2014-10-17 18:29:38 +04:00
|
|
|
<FrameLayout
|
2013-03-08 16:32:10 +04:00
|
|
|
android:id="@+id/visual_area"
|
|
|
|
android:layout_width="match_parent"
|
2013-03-13 13:59:55 +04:00
|
|
|
android:layout_height="0dp"
|
2013-03-08 16:32:10 +04:00
|
|
|
android:layout_alignParentTop="true"
|
2013-03-13 13:59:55 +04:00
|
|
|
android:layout_above="@+id/media_controller"
|
2013-03-08 16:32:10 +04:00
|
|
|
>
|
2013-02-14 22:21:09 +04:00
|
|
|
|
2013-03-08 16:32:10 +04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/image_preview"
|
2013-03-13 13:59:55 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2013-03-08 16:32:10 +04:00
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:contentDescription="@string/preview_image_description"
|
2013-05-10 18:35:01 +04:00
|
|
|
android:src="@drawable/logo" />
|
2013-03-08 16:32:10 +04:00
|
|
|
|
|
|
|
<VideoView
|
|
|
|
android:id="@+id/video_preview"
|
2013-03-13 13:59:55 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2013-03-08 16:32:10 +04:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<com.owncloud.android.media.MediaControlView
|
2013-03-13 13:59:55 +04:00
|
|
|
android:id="@id/media_controller"
|
2013-03-08 16:32:10 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-03-13 13:59:55 +04:00
|
|
|
android:layout_alignParentBottom="true"
|
2015-08-14 19:55:31 +03:00
|
|
|
android:layout_margin="16dp"
|
2013-03-08 16:32:10 +04:00
|
|
|
/>
|
2013-02-14 22:21:09 +04:00
|
|
|
|
|
|
|
</RelativeLayout>
|