81 lines
2.6 KiB
XML
81 lines
2.6 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:layout_marginTop="50dp"
|
|
android:background="@null"
|
|
android:clickable="true"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/btn_back"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:foreground="@drawable/btn_back_selector">
|
|
|
|
<ImageView
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:layout_marginStart="8dp"
|
|
android:background="@mipmap/fanhui01" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_indicator"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="20sp" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
|
|
|
|
<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:visibility="gone"
|
|
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>
|