mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-25 05:57:59 +01:00
81 lines
3.2 KiB
XML
81 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/photo_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.github.chrisbanes.photoview.PhotoView
|
|
android:id="@+id/photo_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="fitCenter"/>
|
|
|
|
<com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
|
|
android:id="@+id/subsampling_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/panorama_outline"
|
|
android:layout_width="@dimen/play_outline_size_big"
|
|
android:layout_height="@dimen/play_outline_size_big"
|
|
android:layout_centerInParent="true"
|
|
android:background="@drawable/circle_black_background_with_inset"
|
|
android:padding="28dp"
|
|
android:src="@drawable/ic_panorama"
|
|
android:visibility="gone"/>
|
|
|
|
<TextView
|
|
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:textColor="@color/theme_dark_text_color"
|
|
android:textSize="@dimen/smaller_text_size"
|
|
android:visibility="gone"
|
|
tools:text="My image\nAnother line"/>
|
|
|
|
<com.simplemobiletools.gallery.helpers.MediaSideScroll
|
|
android:id="@+id/photo_brightness_controller"
|
|
android:layout_width="@dimen/media_side_slider_width"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentStart="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/slide_info"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="120dp"
|
|
android:alpha="0"
|
|
android:background="@drawable/black_rounded_background"
|
|
android:gravity="center"
|
|
android:paddingBottom="@dimen/medium_margin"
|
|
android:paddingLeft="@dimen/activity_margin"
|
|
android:paddingRight="@dimen/activity_margin"
|
|
android:paddingTop="@dimen/medium_margin"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="@dimen/extra_big_text_size"/>
|
|
|
|
<com.simplemobiletools.gallery.views.InstantItemSwitch
|
|
android:id="@+id/instant_prev_item"
|
|
android:layout_width="@dimen/instant_change_bar_width"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<com.simplemobiletools.gallery.views.InstantItemSwitch
|
|
android:id="@+id/instant_next_item"
|
|
android:layout_width="@dimen/instant_change_bar_width"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"/>
|
|
|
|
</RelativeLayout>
|