lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?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>