104 lines
3.5 KiB
XML
104 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/black2"
|
|
android:orientation="vertical"
|
|
tools:ignore="RtlHardcoded">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"
|
|
android:gravity="center"
|
|
android:paddingTop="27dp">
|
|
|
|
<View
|
|
android:id="@+id/v_back"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginLeft="9dp"
|
|
android:background="@drawable/iconfh_left_white" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_back"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_toEndOf="@id/v_back"
|
|
android:gravity="center"
|
|
android:text="@string/im_input_img"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_ok"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_gravity="right"
|
|
android:layout_marginRight="18dp"
|
|
android:text="@string/confirm"
|
|
android:textColor="@color/red"
|
|
android:textSize="16sp" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:padding="6dp">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<com.yunbao.common.dialog.ImageFolderView
|
|
android:id="@+id/image_folder_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
</com.yunbao.common.dialog.ImageFolderView>
|
|
|
|
</FrameLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?actionBarSize">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_photo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="16dp"
|
|
android:text="@string/im_input_img"
|
|
android:textColor="@color/white"
|
|
android:textSize="18sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_preview"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_gravity="right"
|
|
android:layout_marginRight="16dp"
|
|
android:clickable="false"
|
|
android:text="@string/preview"
|
|
android:textColor="@color/pk_red"
|
|
android:textSize="16sp" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|