2016-02-21 21:09:58 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-03-16 21:07:49 +01:00
|
|
|
<RelativeLayout
|
2016-02-21 21:09:58 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-10-18 21:54:08 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-03-16 21:07:49 +01:00
|
|
|
android:id="@+id/photo_holder"
|
2016-02-21 21:09:58 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-03-16 21:07:49 +01:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2017-12-06 18:44:56 +01:00
|
|
|
<com.github.chrisbanes.photoview.PhotoView
|
2017-10-28 11:02:02 +02:00
|
|
|
android:id="@+id/gif_view"
|
2017-03-16 21:07:49 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-10-28 13:27:50 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="fitCenter"/>
|
2017-04-01 12:00:32 +02:00
|
|
|
|
|
|
|
<com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
|
|
|
|
android:id="@+id/subsampling_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2017-10-18 21:54:08 +02:00
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
|
|
|
android:id="@+id/photo_details"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_marginLeft="@dimen/small_margin"
|
|
|
|
android:layout_marginRight="@dimen/small_margin"
|
|
|
|
android:background="@color/gradient_grey_start"
|
|
|
|
android:padding="@dimen/small_margin"
|
|
|
|
android:textSize="@dimen/smaller_text_size"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:text="My image\nAnother line"/>
|
|
|
|
|
2017-03-16 21:07:49 +01:00
|
|
|
</RelativeLayout>
|