lmw
2024-06-07 4264d859bb9f6cbc4c069a9350c917f1b23009dd
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="@color/bg_main"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:background="@color/white"
            android:layout_marginTop="5dp"
            android:layout_height="50dp"
            android:orientation="horizontal">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="50dp"
                android:gravity="center_vertical"
                android:paddingStart="14dp"
                android:background="@color/white"
                android:paddingEnd="14dp"
                android:text="接受订单推送"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
            <include layout="@layout/include_weight_width"/>
 
            <com.xuexiang.xui.widget.button.switchbutton.SwitchButton
                android:id="@+id/switchBtn"
                android:layout_width="50dp"
                android:layout_gravity="center_vertical"
                android:layout_marginEnd="14dp"
                app:swb_tintColor="#EE6408"
                android:layout_height="30dp"/>
 
 
        </LinearLayout>
 
        <include layout="@layout/include_line_14"/>
 
        <LinearLayout
            android:id="@+id/ll_clear"
            android:layout_width="match_parent"
            android:background="@color/white"
            android:layout_height="50dp"
            android:orientation="horizontal">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="50dp"
                android:gravity="center_vertical"
                android:paddingStart="14dp"
                android:background="@color/white"
                android:paddingEnd="14dp"
                android:text="清除缓存"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
            <include layout="@layout/include_weight_width"/>
 
            <TextView
                android:id="@+id/tv_cache"
                android:layout_width="wrap_content"
                android:layout_height="50dp"
                android:gravity="center_vertical"
                android:paddingStart="14dp"
                android:background="@color/white"
                android:drawablePadding="@dimen/dp_10"
                android:paddingEnd="14dp"
                android:alpha="0.4"
                android:text="61.7M"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
 
        </LinearLayout>
 
        <include layout="@layout/include_line_14"/>
 
 
 
        <LinearLayout
            android:layout_width="match_parent"
            android:background="@color/white"
            android:layout_height="50dp"
            android:orientation="horizontal">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="50dp"
                android:gravity="center_vertical"
                android:paddingStart="14dp"
                android:background="@color/white"
                android:paddingEnd="14dp"
                android:text="当前版本"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
            <include layout="@layout/include_weight_width"/>
 
            <TextView
                android:id="@+id/tv_version_code"
                android:layout_width="wrap_content"
                android:layout_height="50dp"
                android:gravity="center_vertical"
                android:paddingStart="14dp"
                android:background="@color/white"
                android:drawablePadding="@dimen/dp_10"
                android:paddingEnd="14dp"
                android:alpha="0.4"
                android:text="V1.0"
                android:textColor="#ff333333"
                android:textSize="14sp"
                />
 
 
        </LinearLayout>
 
        <include layout="@layout/include_line_14"/>
 
 
 
        <TextView
            android:id="@+id/ll_version"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:gravity="center_vertical"
            android:paddingStart="14dp"
            android:background="@color/white"
            android:paddingEnd="14dp"
            android:drawableEnd="@mipmap/more_gray"
            android:text="版本更新"
            android:textColor="#ff333333"
            android:textSize="14sp"
            />
 
    </LinearLayout>
 
    <RelativeLayout
        android:id="@+id/rl_login_out"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:elevation="2dp">
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:background="@color/white"
            android:gravity="center"
            android:text="退出登录"
            android:textColor="#ff666666"
            android:textSize="15sp"
            android:textStyle="bold" />
 
    </RelativeLayout>
 
 
 
 
</LinearLayout>