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
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/top_bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
 
 
    <LinearLayout
        android:id="@+id/mTitleRoot"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="start"
        android:orientation="horizontal"
        android:paddingStart="40dp"
        android:paddingEnd="40dp">
 
        <TextView
            android:id="@+id/tv_title"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:ellipsize="end"
            android:gravity="center_vertical"
            android:maxWidth="165dp"
            android:maxLines="1"
            tools:text="图片预览"
            android:textColor="@android:color/black"
            android:textSize="16sp" />
 
        <ImageView
            android:id="@+id/mSetArrowImg"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_marginStart="5dp" />
 
    </LinearLayout>
 
    <ImageView
        android:id="@+id/iv_back"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:scaleType="centerInside"
        android:src="@mipmap/picker_icon_back_black" />
 
    <FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="50dp"
        android:layout_alignParentEnd="true">
 
        <TextView
            android:id="@+id/tv_rightBtn"
            android:layout_width="wrap_content"
            android:layout_height="28dp"
            android:layout_gravity="bottom"
            android:layout_marginEnd="10dp"
            android:layout_marginBottom="11dp"
            android:gravity="center"
            android:paddingLeft="8dp"
            android:paddingRight="8dp"
            tools:text="确定"
            android:textColor="#ffffff"
            android:textSize="14sp" />
    </FrameLayout>
 
</RelativeLayout>