-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlecture_03_android_ui.html
413 lines (401 loc) · 22.3 KB
/
lecture_03_android_ui.html
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Android User Interface (Part 2)</title>
<link rel="stylesheet" href="css/reveal.css"> <!--slide style-->
<link rel="stylesheet" href="css/theme/noveo.css" id="theme"> <!--noveo theme-->
<link rel="stylesheet" href="lib/css/magula.css"> <!--code highlight-->
</head>
<body>
<div id="hidden" style="display: none">
<div id="overlay">
<div id="header-left"></div>
<div id="header-right"></div>
<div id="footer-right"></div>
</div>
</div>
<div class="reveal">
<div class="slides">
<!--positioning content-->
<section data-background-color="#fff"
data-background-image="css/theme/img/background_title.svg"
data-background-position="right bottom"
data-background-size="16.2em 15.5em"
class="center noveo-title"
data-transition="convex">
<h1>Android User Interface (Part 2)</h1>
<div class="title-separator"></div>
<h2>автор:</h2>
<p>Татьяна Распутина</p>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Содержание</h1>
<div class="title-separator"></div>
<div class="center-horizontal">
<ul>
<li>Переиспользование тем и стилей</li>
<li>Touch Framework</li>
<li>Реализация Custom View</li>
<li>Жизненный цикл View</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1>Themes & Styles</h1>
<div class="third-left center-horizontal">
<pre><code class="tiny" data-trim data-noescape>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowBackground">@color/white</item>
<item name="android:colorControlNormal">@color/colorPrimary</item>
<item name="android:colorControlActivated">@color/colorAccent</item>
<item name="android:colorControlHighlight">@color/colorAccent</item>
<item name="android:textColorPrimary">@color/grey</item>
<item name="android:textColorHighlight">@color/accent</item>
</style></code></pre>
</div>
<div class="third-center center-horizontal">
<img src="lecture/layouts_ui/theme_example_1.png" width="70%"/>
</div>
<div class="third-right center-horizontal">
<img src="lecture/layouts_ui/theme_example_2.png" width="70%"/>
</div>
</section>
<section class="center center-horizontal" data-transition="fade">
<h1>Themes & Styles</h1>
<div class="center-horizontal borders" data-transition="fade">
<img src="lecture/layouts_ui/theme_vs_style_example_1.png"/>
</div>
</section>
<section class="center center-horizontal" data-transition="fade">
<h1>Themes & Styles</h1>
<div class="center-horizontal borders" data-transition="fade">
<img src="lecture/layouts_ui/theme_vs_style_example_2.png"/>
</div>
</section>
<section class="center center-horizontal" data-transition="fade">
<h1>Themes & Styles</h1>
<div class="center-horizontal borders" data-transition="fade">
<img src="lecture/layouts_ui/theme_vs_style_example_3.png"/>
</div>
</section>
<section class="center center-horizontal" data-transition="fade">
<h1>Themes & Styles</h1>
<div class="center-horizontal borders" data-transition="fade">
<img src="lecture/layouts_ui/theme_vs_style_example_4.png"/>
</div>
</section>
<section class="center center-horizontal">
<h1>Переиспользование разметки: <include/> vs <merge/></h1>
<div class="half-left">
<pre><code class="xml small" data-trim data-noescape>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"/>
<TextView
android:id="@+id/text_view"
style="@style/AppTheme.Text.CustomStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toEndOf="@+id/image_view"/>
</RelativeLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"/>
<include
android:layout_width="wrap_content"
android:layout_height="wrap_content"
layout="@layout/complex_layout"/>
</LinearLayout></code></pre>
</div>
<div class="half-right center-horizontal">
<pre><code class="xml small" data-trim data-noescape>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:gravity="center"
tools:orientation="vertical"
tools:parentTag="android.widget.LinearLayout">
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/start"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/stop"/>
</merge></code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Touch Framework Overview</h1>
<div class="half-left">
<h2>MotionEvent</h2>
<ul>
<li>Интерпретация зависит от устройства ввода: палец, стилус, мышь</li>
<li>Содержит данные только об одном событии</li>
<li>Все MotionEvent хранятся в пуле</li>
</ul>
<h2 class="fragment" data-fragment-index="1">Touch Actions</h2>
<ul class="fragment" data-fragment-index="1">
<li>DOWN - касание экрана</li>
<li>MOVE - перемещение</li>
<li>UP - завершение касания (правильный жест пользователя)</li>
<li>CANCEL - отмена касания</li>
</ul>
</div>
<div class="half-right center-horizontal">
<h2>MotionEvent Cycle</h2>
<img src="lecture/layouts_ui/motion_event_lifecycle.png" width="75%"/>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Touch Processing</h1>
<div class="center center-horizontal">
<img src="lecture/layouts_ui/touch_events_interception.png" width="35%"/>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Multi-touch handling</h1>
<div class="center">
<h2>Дополнительные события:</h2>
<ul>
<li>POINTER_DOWN</li>
<li>POINTER_UP</li>
</ul>
<h2>У пальца есть две характеристики:</h2>
<ul>
<li><b>Индекс</b> - порядковый номер пальца (палец может иметь разные индексы)</li>
<li><b>ID</b> - уникальный идентификатор пальца</li>
</ul>
<img src="lecture/layouts_ui/multitouch.png"/>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Support touch handling</h1>
<div class="center">
<ul>
<li><b>VelocityTracker</b> - отслеживание скорости (похож на MotionEvent - тоже находится в пуле)
</li>
<li><b>GestureDetector</b> - обрабатывает входящие MotionEvent в готовые события, которые могут быть
получены через OnGestureListener. Обрабатывает onScroll, onFling, onDoubleTap, onContextClick.
</li>
<li><b>ScaleGestureDetector</b> - обрабатывает Pinch-to-zoom</li>
<li><span style="color: red;">RotationGestureDetector</span> - нет в Support Library! 2-finger
rotation: open source solutions.
</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1>Создание View в Runtime</h1>
<div class="center-horizontal">
<pre><code class="kotlin small" data-trim data-noescape>
class CustomView : View {
companion object { const val DEFAULT_ANIMATION_TIME = 300 }
private var title: String = ""
private var animationTime: Int = DEFAULT_ANIMATION_TIME
constructor(context: Context) : this(context, null)
constructor(context: Context, attrs: AttributeSet?) : this(context, attrs, 0)
constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : this(context, attrs, defStyleAttr, 0)
constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int, defStyleRes: Int) : super(context, attrs, defStyleAttr, defStyleRes) {
var titleRes: Int = R.string.title_default
attrs?.let {
val typedArray = context.obtainStyledAttributes(it, R.styleable.CustomView, defStyleAttr, defStyleRes)
titleRes = typedArray.getResourceId(R.styleable.CustomView_title, titleRes)
animationTime = typedArray.getInt(R.styleable.CustomView_animation_time, DEFAULT_ANIMATION_TIME)
typedArray.recycle()
}
title = resources.getString(titleRes)
}
}</code></pre>
</div>
<p>в файле /res/values/attrs.xml</p>
<div class="center-horizontal">
<pre><code class="xml small" data-trim data-noescape>
<resources>
<declare-styleable name="CustomView">
<attr name="title" format="string" />
<attr name="animation_time" format="integer" />
</declare-styleable>
</resources></code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1>Использование кастомного View</h1>
<br>
<div class="half-left">
<pre><code class="kotlin small" data-trim data-noescape>
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
rootLayout.addView(
CustomView(this).apply {
layoutParams = FrameLayout.LayoutParams(
FrameLayout.LayoutParams.MATCH_PARENT,
FrameLayout.LayoutParams.WRAP_CONTENT
).apply {
setMargins(10, 10, 10, 10)
}
}
)
}
}</code></pre>
</div>
<div class="half-right center-horizontal">
<pre><code class="xml small" data-trim data-noescape>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.intership.layoutexample.CustomView
android:id="@+id/customView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
custom:title="@string/title"
custom:animation_time="300"
android:background="@color/white" />
</FrameLayout></code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Жизненный цикл View</h1>
<div class="half-left">
<h2>Measure Pass</h2>
<ul>
<li>Обход дерева View сверху вниз</li>
<li>Каждый ViewGroup устанавливает требования к размерам</li>
<li>Каждый View вычисляет свои размеры и сохраняет</li>
</ul>
<ul class="fragment" data-fragment-index="1">
<li><span style="color: red;">Важно:</span> окончательные размеры и местоположения View еще не
определены
</li>
<li><span style="color: red;">Важно:</span> этап measure может быть вызван несколько раз</li>
</ul>
<ul class="fragment" data-fragment-index="2">
<li>FrameLayout - 1</li>
<li>LinearLayout - 1 (weights - 2)</li>
<li>RelativeLayout - 2</li>
</ul>
</div>
<div class="half-right center-horizontal">
<img src="lecture/layouts_ui/view_lifecycle.png" width="50%"/>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Жизненный цикл View</h1>
<div class="half-left">
<h2>MeasureSpec - размер и режим</h2>
<ul>
<li>UNSPECIFIED</li>
<li>EXACTLY</li>
<li>AT_MOST</li>
</ul>
<h2 class="fragment" data-fragment-index="1">MeasureState - ответ дочернего View</h2>
<ul class="fragment" data-fragment-index="1">
<li>0 - размер подходит</li>
<li>MEASURED_STATE_TOO_SMALL - View требуется больше места, чем позволяет родительский элемент</li>
</ul>
</div>
<div class="half-right center-horizontal">
<img src="lecture/layouts_ui/view_lifecycle.png" width="50%"/>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Жизненный цикл View</h1>
<div>
<h2>Layout Pass</h2>
<ul>
<li>Обход дерева View сверху вниз</li>
<li>Каждый ViewGroup устанавливает окончательные размеры и местоположения</li>
<li>Выполняется один раз</li>
<li>width и measuredWidth могут не совпадать</li>
</ul>
<pre class="fragment" data-fragment-index="1"><code class="kotlin small" data-trim data-noescape>
viewGroup.layout(parentLeft, parentTop, parentRight, parentBottom)
viewGroup.onLayout(changed, parentLeft, parentTop, parentRight, parentBottom)
view.layout(left, top, right, bottom)
view.onLayout(changed, left, top, right, bottom)</code></pre>
<ul class="fragment" data-fragment-index="2">
<li>invalidate() - "перерисовывает" View без изменения размеров.</li>
<li>requestLayout() - вызов Measure Pass и Layout Pass для всего дерева View.</li>
<li>forceLayout() - указывает, что дочернее View обязательно должно быть remeasure и relayout.
forceLayout() работает только с дочерним View, если он встречается вместе с requestLayout() для
его прямого родителя.
Вызов forceLayout() сам по себе не будет иметь эффекта, поскольку он не вызывает
requestLayout().
</li>
</ul>
<p><a href="https://developer.android.com/guide/topics/ui/how-android-draws">How Android Draws Views</a>
</p>
</div>
</section>
<section class="center center-horizontal">
<h1>Summary</h1>
<br>
<div class="center-horizontal">
<h2>Когда создавать Custom View или Compound View?</h2>
<ul>
<li>Для создания View с новой, особой функциональностью</li>
<li>Для расширения функциональности системных View/ViewGroup</li>
</ul>
<h2>Custom View Pitfalls</h2>
<ul>
<li>Не создавайте Compound View для реализации своих алгоритмов measure и layout в ViewGroup</li>
<li>Сохранение и восстановление состояния</li>
<li>Каскадный вызов конструкторов View</li>
<li>Освобождение TypedArray после инициализации View</li>
</ul>
</div>
</section>
<section>
<h1>Дополнительные ссылки</h1>
<br>
<ul>
<li><p><a href="https://developer.android.com/guide/topics/ui/how-android-draws">How Android Draws
Views</a></p></li>
<li><p><a href="http://developer.android.com/training/best-ui.html">Best Practices for User
Interface</a></p></li>
<li><p><a href="http://developer.android.com/training/improving-layouts/index.html">Improving Layout
Performance</a></p></li>
<li><p><a href="http://developer.android.com/training/improving-layouts/optimizing-layout.html">Optimizing
Layout Hierarchies</a></p></li>
<li><p><a href="http://developer.android.com/training/custom-views/index.html">Creating Custom Views</a>
</p></li>
<li><p><a href="http://developer.android.com/guide/topics/ui/custom-components.html">Custom
Components</a></p></li>
</ul>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script> <!--HeadJS functions-->
<script src="js/reveal.js"></script> <!--RevealJS functions-->
<script src="js/config.js"></script> <!--RevealJS config-->
<script src="lib/js/jquery-3.2.1.min.js"></script>
<script src="js/printpdf.js"></script>
</body>
</html>
Reveal.initialize({
center: true
})