FossifyGallery/app/src/main/res/layout/pager_photo_item.xml

34 lines
1.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2017-03-16 21:07:49 +01:00
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2017-03-16 21:07:49 +01:00
android:id="@+id/photo_holder"
android:layout_width="match_parent"
2017-03-16 21:07:49 +01:00
android:layout_height="match_parent">
<ImageView
android:id="@+id/gif_view"
2017-03-16 21:07:49 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
android:id="@+id/subsampling_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"/>
<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>