82 lines
2.9 KiB
XML
82 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#272828"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_top_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:background="#373c3d"
|
|
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:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_toRightOf="@+id/btn_back"
|
|
android:text="@string/image"
|
|
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>
|
|
|
|
<select.shang.com.imagesselector.view.ClipImageView
|
|
android:id="@+id/process_img"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout> |