-
-
Notifications
You must be signed in to change notification settings - Fork 217
/
activity_main.xml
342 lines (294 loc) · 14.8 KB
/
activity_main.xml
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F4F4F4"
tools:context=".MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="256dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:collapsedTitleGravity="center"
app:expandedTitleGravity="center"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:title="折叠效果">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/title_bar_head"
app:layout_collapseMode="parallax" />
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:layout_marginRight="20dp"
app:layout_collapseMode="pin" />
<com.hjq.bar.TitleBar
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
app:barStyle="ripple"
app:layout_collapseMode="pin" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="50dp"
android:text="搭配 CoordinatorLayout 使用"
android:textColor="#FFFFFF"
android:textSize="16sp"
app:layout_collapseMode="parallax" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="90dp"
android:autoLink="all"
android:marqueeRepeatLimit="marquee_forever"
android:text="https://github.com/getActivity/TitleBar"
android:textColor="#FFFFFF"
android:textSize="16sp"
app:layout_collapseMode="parallax" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:orientation="vertical"
android:paddingTop="20dp"
android:paddingBottom="20dp">
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:title="默认的标题栏" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:leftIcon="@null"
app:title="不带返回按钮并标题斜体"
app:titleStyle="italic" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
app:leftIcon="@null"
app:title="标题向左对齐并且加粗"
app:titleGravity="start"
app:titleHorizontalPadding="20dp"
app:titleStyle="bold" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:lineVisible="false"
app:title="不带分割线的标题栏" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:leftHorizontalPadding="10dp"
app:lineVisible="false"
app:rightHorizontalPadding="10dp"
app:title="标题文字过多会自动开启自带跑马灯效果,就问你溜不溜"
app:titleHorizontalPadding="0dp" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:childVerticalPadding="20dp"
app:title="通过垂直内间距来调整标题栏的高度" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:leftIcon="@mipmap/ic_launcher"
app:leftIconHeight="20dp"
app:leftIconTint="#ff00ff"
app:leftIconWidth="20dp"
app:leftTitle="左边"
app:rightIcon="@mipmap/ic_launcher"
app:rightIconHeight="20dp"
app:rightIconTint="#00ff00"
app:rightIconWidth="20dp"
app:rightTitle="右边"
app:title="设置图标重色器"
app:titleIcon="@mipmap/ic_launcher"
app:titleIconHeight="20dp"
app:titleIconTint="#0000ff"
app:titleIconWidth="20dp" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:childVerticalPadding="8dp"
app:leftIcon="@drawable/qr_code_ic"
app:leftIconGravity="top"
app:leftIconHeight="20dp"
app:leftIconPadding="5dp"
app:leftIconWidth="20dp"
app:leftTitle="扫一扫"
app:leftTitleColor="#666666"
app:leftTitleSize="12sp"
app:rightIcon="@drawable/message_ic"
app:rightIconGravity="top"
app:rightIconHeight="20dp"
app:rightIconWidth="20dp"
app:rightTitle="消息"
app:rightTitleColor="#666666"
app:rightTitleSize="12sp"
app:title="控制图标的位置和大小"
app:titleIcon="@mipmap/ic_launcher"
app:titleIconGravity="bottom"
app:titleIconHeight="10dp"
app:titleIconWidth="10dp" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:leftIcon="@null"
app:leftTitle="左边"
app:leftTitleColor="#FF3300"
app:leftTitleSize="18sp"
app:rightTitle="右边"
app:rightTitleColor="#0033FF"
app:rightTitleSize="18sp"
app:title="自定义文字大小和颜色"
app:titleColor="#33FF00"
app:titleSize="20sp" />
<com.hjq.bar.TitleBar
android:id="@+id/tb_main_bar_click"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:leftBackground="?attr/selectableItemBackground"
app:leftIcon="@mipmap/ic_launcher"
app:leftTitle="左边"
app:rightBackground="?attr/selectableItemBackground"
app:rightIcon="@mipmap/ic_launcher"
app:rightTitle="右边"
app:title="监听标题栏点击事件" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:barStyle="night"
app:leftTitle="返回"
app:rightTitle="设置"
app:title="夜间模式的标题栏" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/shape_gradient"
app:barStyle="transparent"
app:leftTitle="返回"
app:rightTitle="设置"
app:title="仿QQ渐变样式" />
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:leftIcon="@null"
app:title="左边两个按钮效果" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:orientation="horizontal" >
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginStart="10dp"
android:src="@mipmap/ic_launcher" />
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginStart="5dp"
android:src="@mipmap/ic_launcher" />
</LinearLayout>
</com.hjq.bar.TitleBar>
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:leftIcon="@null"
app:title="右边两个按钮效果" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|center_vertical"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="我是文本" />
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginStart="5dp"
android:layout_marginEnd="10dp"
android:src="@mipmap/ic_launcher" />
</LinearLayout>
</com.hjq.bar.TitleBar>
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingTop="5dp"
android:paddingBottom="5dp" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="我是主标题"
android:textColor="#333333"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:text="我是副标题"
android:textColor="#666666"
android:textSize="14sp" />
</LinearLayout>
</com.hjq.bar.TitleBar>
<com.hjq.bar.TitleBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:leftIcon="@null"
app:leftTitle="我是很长很长很长很长很长的文案"
app:rightTitle="我是很长很长很长很长很长的文案"
app:title="默认的标题栏" />
<com.hjq.bar.TitleBar
android:id="@+id/tb_main_bar_long_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
app:leftIcon="@null"
app:leftTitle="左边文案"
app:rightTitle="右边文案"
app:title="我是很长很长很长很长很长很长很长很长很长很长的标题" />
</LinearLayout>
</FrameLayout>
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>