2017-06-26 18:49:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright 2017 Thomas Schneider
|
|
|
|
|
2017-07-10 10:33:24 +02:00
|
|
|
This file is a part of Mastalab
|
2017-06-26 18:49:39 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
2017-07-10 10:33:24 +02:00
|
|
|
Mastalab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-06-26 18:49:39 +02:00
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
Public License for more details.
|
|
|
|
|
2017-08-04 11:11:27 +02:00
|
|
|
You should have received a copy of the GNU General Public License along with Mastalab; if not,
|
2017-06-26 18:49:39 +02:00
|
|
|
see <http://www.gnu.org/licenses>.
|
|
|
|
-->
|
2018-02-09 16:17:43 +01:00
|
|
|
<com.gw.swipeback.SwipeBackLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/swipeBackLayout"
|
2017-06-26 18:49:39 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-09-26 17:25:39 +02:00
|
|
|
app:directionMode="bottom"
|
2018-02-09 16:17:43 +01:00
|
|
|
app:isSwipeFromEdge="true"
|
|
|
|
app:maskAlpha="125"
|
|
|
|
app:swipeBackFactor="0.5">
|
2018-12-10 09:22:50 +01:00
|
|
|
|
2018-02-09 16:17:43 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/main_container_media">
|
2018-02-09 14:56:57 +01:00
|
|
|
|
2017-12-22 16:48:37 +01:00
|
|
|
|
2018-02-09 14:56:57 +01:00
|
|
|
|
2018-02-09 16:17:43 +01:00
|
|
|
<!-- Main Loader -->
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/loader"
|
|
|
|
android:layout_alignParentTop="true"
|
2017-11-07 11:09:09 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-09 16:17:43 +01:00
|
|
|
android:gravity="center"
|
|
|
|
>
|
|
|
|
<ProgressBar
|
|
|
|
style="@style/Base.Widget.AppCompat.ProgressBar.Horizontal"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:id="@+id/pbar_inf"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:max="100"
|
|
|
|
android:progress="0"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/loader_progress"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:textColor="@color/dark_text"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</RelativeLayout>
|
2018-05-11 18:20:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
<FrameLayout
|
2018-02-09 16:17:43 +01:00
|
|
|
android:layout_centerInParent="true"
|
2018-05-11 18:20:07 +02:00
|
|
|
android:id="@+id/media_picture_container"
|
2018-02-09 16:17:43 +01:00
|
|
|
android:layout_width="match_parent"
|
2018-05-11 18:20:07 +02:00
|
|
|
android:layout_height="match_parent">
|
2018-12-10 09:22:50 +01:00
|
|
|
<!-- Description is set dynamically -->
|
2018-05-11 18:20:07 +02:00
|
|
|
<com.github.chrisbanes.photoview.PhotoView
|
|
|
|
android:visibility="gone"
|
|
|
|
android:id="@+id/media_picture"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-12-10 09:22:50 +01:00
|
|
|
/>
|
2018-05-11 18:20:07 +02:00
|
|
|
<TextView
|
|
|
|
android:visibility="gone"
|
|
|
|
android:gravity="center"
|
|
|
|
android:id="@+id/media_description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="20dip"
|
|
|
|
android:layout_gravity="center_horizontal|bottom"
|
|
|
|
android:padding="12dp"
|
|
|
|
android:background="#AA000000"
|
|
|
|
android:textColor="#ffffffff"
|
|
|
|
/>
|
|
|
|
</FrameLayout>
|
2018-02-09 16:17:43 +01:00
|
|
|
<VideoView
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:id="@+id/media_video"
|
2017-12-22 16:48:37 +01:00
|
|
|
android:layout_width="match_parent"
|
2018-02-09 16:17:43 +01:00
|
|
|
android:layout_height="match_parent" />
|
|
|
|
<ImageView
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
android:src="@drawable/ic_first_page"
|
|
|
|
android:id="@+id/media_prev"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="20dp"
|
2018-12-10 09:22:50 +01:00
|
|
|
android:contentDescription="@string/previous" />
|
2018-02-09 16:17:43 +01:00
|
|
|
<ImageView
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
android:id="@+id/media_next"
|
|
|
|
android:src="@drawable/ic_last_page"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="20dp"
|
2018-12-10 09:22:50 +01:00
|
|
|
android:contentDescription="@string/next" />
|
2018-02-09 16:17:43 +01:00
|
|
|
|
2018-02-11 07:54:28 +01:00
|
|
|
|
2018-02-09 17:39:09 +01:00
|
|
|
|
2018-09-26 15:34:08 +02:00
|
|
|
<ImageButton
|
2018-02-09 17:39:09 +01:00
|
|
|
android:id="@+id/media_close"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
app:layout_anchorGravity="top|left"
|
|
|
|
android:layout_marginStart="10dp"
|
2018-09-26 15:34:08 +02:00
|
|
|
android:background="@color/transparent"
|
2018-02-09 17:39:09 +01:00
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginTop="5dp"
|
2018-09-26 14:53:41 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-09 17:39:09 +01:00
|
|
|
android:src="@drawable/ic_close"
|
2018-12-10 09:22:50 +01:00
|
|
|
android:contentDescription="@string/close"
|
2018-02-09 17:39:09 +01:00
|
|
|
/>
|
|
|
|
|
2018-09-26 15:34:08 +02:00
|
|
|
<ImageButton
|
2018-02-09 17:39:09 +01:00
|
|
|
android:id="@+id/media_save"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
2018-09-26 15:34:08 +02:00
|
|
|
app:layout_anchorGravity="top|left"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:background="@color/transparent"
|
|
|
|
android:layout_marginLeft="10dp"
|
2018-02-09 17:39:09 +01:00
|
|
|
android:layout_marginTop="5dp"
|
2018-09-26 14:53:41 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-09 17:39:09 +01:00
|
|
|
android:src="@drawable/ic_save_white"
|
2018-12-10 09:22:50 +01:00
|
|
|
android:contentDescription="@string/download"
|
2018-02-09 17:39:09 +01:00
|
|
|
/>
|
2018-02-11 07:54:28 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:visibility="gone"
|
|
|
|
android:background="@drawable/media_message_border"
|
|
|
|
android:id="@+id/message_ready"
|
|
|
|
android:textColor="@color/dark_text"
|
|
|
|
android:text="@string/media_ready"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="14sp"
|
2018-05-11 18:20:07 +02:00
|
|
|
android:layout_alignBottom="@+id/media_picture_container"
|
2018-02-11 07:54:28 +01:00
|
|
|
android:layout_marginBottom="40dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="40dp"/>
|
2018-02-09 14:56:57 +01:00
|
|
|
</RelativeLayout>
|
2018-02-09 16:17:43 +01:00
|
|
|
</com.gw.swipeback.SwipeBackLayout>
|