<?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">
|
|
<FrameLayout
|
android:id="@+id/mTitleContainer"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_alignParentTop="true" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/mPreviewRecyclerView"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_alignParentBottom="true"
|
android:layout_marginBottom="48dp"
|
android:background="#f0303030" />
|
|
<RelativeLayout
|
android:id="@+id/bottom_bar"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:layout_alignParentBottom="true"
|
android:background="#f0303030">
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="#30ffffff" />
|
|
|
<CheckBox
|
android:id="@+id/mOriginalCheckBox"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:layout_gravity="center"
|
android:button="@null"
|
android:drawablePadding="5dp"
|
android:gravity="center"
|
android:text="@string/picker_str_bottom_original"
|
android:textColor="@color/white_F5" />
|
|
<CheckBox
|
android:id="@+id/mSelectCheckBox"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentEnd="true"
|
android:layout_centerVertical="true"
|
android:layout_marginEnd="12dp"
|
android:button="@null"
|
android:drawablePadding="4dp"
|
android:includeFontPadding="true"
|
android:paddingStart="4dp"
|
android:text="@string/picker_str_bottom_choose"
|
android:textColor="#ffffff" />
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|