115 lines
4.0 KiB
XML
115 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<imageselector.view.MyViewPager
|
|
android:id="@+id/vp_image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#272828" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_top_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:background="#373c3d"
|
|
android:clickable="true"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/btn_back"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:foreground="@drawable/btn_back_selector">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:scaleType="centerInside"
|
|
android:src="@drawable/icon_back" />
|
|
|
|
</FrameLayout>
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="12dp"
|
|
android:layout_marginTop="12dp"
|
|
android:layout_toRightOf="@+id/btn_back"
|
|
android:background="@android:color/black" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_indicator"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_toRightOf="@+id/btn_back"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="18sp" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/btn_confirm"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="16dp"
|
|
android:foreground="@drawable/btn_foreground_selector">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_confirm"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/btn_green_shape"
|
|
android:gravity="center"
|
|
android:minWidth="50dp"
|
|
android:paddingBottom="5dp"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="5dp"
|
|
android:text="@string/confirm"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="14sp" />
|
|
|
|
</FrameLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_bottom_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="#373c3d"
|
|
android:clickable="true">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_select"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentRight="true"
|
|
android:drawableLeft="@drawable/icon_image_un_select"
|
|
android:drawablePadding="10dp"
|
|
android:gravity="center"
|
|
android:paddingLeft="12dp"
|
|
android:paddingRight="12dp"
|
|
android:text="@string/select"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="18sp" />
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="15dp"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_toLeftOf="@+id/tv_select"
|
|
android:background="@android:color/black" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|