42 lines
1.7 KiB
XML
42 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@color/bg_black"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.github.chrisbanes.photoview.PhotoView
|
|
android:id="@+id/img_preview_picture"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:transitionName="image_flag"/>
|
|
<ImageView
|
|
android:id="@+id/img_exit"
|
|
android:layout_width="@dimen/action_bar_height"
|
|
android:layout_height="@dimen/action_bar_height"
|
|
android:src="@mipmap/combined_shape_pad"
|
|
android:scaleType="fitCenter"
|
|
android:transitionName="im_publish_cancel"/>
|
|
<TextView
|
|
android:textSize="@dimen/content12"
|
|
android:textColor="@color/txt_white"
|
|
android:ellipsize="end"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/tv_pic_desc"
|
|
android:background="@drawable/shape_gradient_1d2c42"
|
|
android:paddingLeft="@dimen/dp32"
|
|
android:paddingRight="@dimen/dp32"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp104"
|
|
android:maxLines="2"
|
|
android:layout_alignParentBottom="true"/>
|
|
<ImageView
|
|
android:id="@+id/img_save"
|
|
android:background="@drawable/picture_save"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="@dimen/dp10"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true"/>
|
|
</RelativeLayout>
|