-
Notifications
You must be signed in to change notification settings - Fork 5
/
lecture_15_android_layouts.html
532 lines (514 loc) · 32 KB
/
lecture_15_android_layouts.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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
<!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 1)</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 1)</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>Что такое View и ViewGroup?</li>
<li>Верстка элементов UI в XML</li>
<li>Настройка UI из кода Activity/Fragments и взаимодействие с пользователем</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Overview</h1>
<br>
<div class="half-left">
<h3>Что такое View?</h3>
<p>Любой элемент интерфейса, с которым пользователь может взаимодействовать.</p>
<h3>Что такое ViewGroup?</h3>
<p>Наследник View, представляющий собой невидимый пользователю контейнер, определяющий порядок, размеры
и местоположение View на экране.</p>
<p class="fragment" data-fragment-index="1">Каждый ViewGroup реализует вложенный класс - наследник <b>ViewGroup.LayoutParams</b>,
который распространяет свои layout-атрибуты на все дочерние View и ViewGroup.
</p>
</div>
<div class="half-right">
<div class="borders center-vertical">
<img src="lecture/layouts_ui/layouts_view_hierarchy.png">
</div>
</div>
</section>
<section class="center center-horizontal">
<h1>Верстка UI в XML</h1>
<br>
<div class="half-left">
<ul>
<li><b>Декларативность</b>: позволяет определять и комбинировать View без деталей реализации</li>
<li><b>Разделение</b>: позволяет разрабатывать интерфейс отдельно от логики экрана</li>
<li><b>Стандартизация</b>: упрощает понимание и поддержку визуальной структуры пользовательского
интерфейса
</li>
<li><b>Скорость</b>: быстрая и легкая реализация, возможность переиспользования</li>
<li><b>Адаптация</b>: позволяет настроить UI под разные конфигурации Android устройств</li>
</ul>
</div>
<div class="half-right center-horizontal">
<div class="borders">
<img src="lecture/layouts_ui/common_views_example.png">
</div>
</div>
</section>
<section class="center center-horizontal"
data-background-image="lecture/layouts_ui/ic_android_studio_logo.png"
data-background-position="right bottom"
data-background-size="30%"
data-background-color="#d5e29f">
<h1 style="display:inline-block; padding: 0.5em 0.75em; font-size: 3em; color: white; background-image:url('lecture/layouts_ui/title_bg.png')"
class="half-right center-horizontal">Android Layouts</h1>
</section>
<section class="center center-horizontal">
<h1>Know Android Layouts</h1>
<ul>
<li>FrameLayout</li>
<li>LinearLayout</li>
<li>RelativeLayout</li>
<li>ConstraintLayout</li>
<li class="fragment" data-fragment-index="1">FlexboxLayout</li>
<li class="fragment" data-fragment-index="2">Specific: WebView, SearchView</li>
<li class="fragment" data-fragment-index="3">Scroll containers: ScrollView, NestedScrollView,
HorizontalScrollView
</li>
<li class="fragment" data-fragment-index="4">List, paging: RecyclerView, ViewPager, AdapterView</li>
<li class="fragment" data-fragment-index="5">Animations: MotionLayout, DrawerLayout, CoordinatorLayout
</li>
<li class="fragment" data-fragment-index="6">Outdated: TableLayout, GridLayout, ListView, GridView,
AbsoluteLayout
</li>
</ul>
</section>
<section class="center center-horizontal">
<h1>FrameLayout</h1>
<div class="half-left">
<h3>View Common Attributes</h3>
<pre><code class="xml small" data-trim data-noescape>
android:id - уникальный идентификатор
android:layout_width - ширина элемента (wrap_content, match_parent)
android:layout_height - высота элемента
android:layout_margin - отступы снаружи элемента
android:padding - отступы внутри элемента
android:layout_gravity - расположение элемента внутри родителя
android:gravity - расположение контента внутри элемента (top, start, center, center_vertical...)
android:visibility - показывать элемент или нет (visible, invisible, gone)
android:background - фоновое изображение</code></pre>
<h3 class="fragment" data-fragment-index="1">TextView Unique Attributes</h3>
<pre class="fragment" data-fragment-index="1"><code class="xml small" data-trim data-noescape>
android:text – текст
android:textSize – размер
android:textColor – цвет
android:fontFamily - фонт
android:textStyle - стиль (bold, italic, normal)
android:singleLine - максимум одна строка текста
android:maxLines - максимальное число строк текста
android:ellipsize - для сокращения длинного текста многоточием
android:drawableTop - добавить drawable к тексту (Compound Drawable)
android:drawablePadding - отступ от текста до Compound Drawable</code></pre>
<h3 class="fragment" data-fragment-index="2">ImageView Unique Attributes</h3>
<pre class="fragment" data-fragment-index="2"><code class="xml small" data-trim data-noescape>
android:src - что показывать
android:scaleType - как масштабировать
android:adjustViewBounds - размеры View устанавливаются от размеров изображения</code></pre>
</div>
<div class="half-right center-horizontal">
<img src="lecture/layouts_ui/frame_layout_example.png" width="50%"/>
</div>
</section>
<section class="center center-horizontal">
<h1>Create View programmatically</h1>
<div class="half-left">
<pre><code class="xml small" data-trim data-noescape>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"/></code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
class SplashActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_splash)
frameLayout.addView(TextView(this).apply {
// View Common Attributes
id = ViewCompat.generateViewId()
layoutParams = FrameLayout.LayoutParams(
FrameLayout.LayoutParams.MATCH_PARENT,
FrameLayout.LayoutParams.WRAP_CONTENT
).also {
it.bottomMargin = resources.getDimensionPixelSize(R.dimen.splash_text_margin_bottom)
it.gravity = Gravity.BOTTOM
}
rotation = 30f
// TextView Unique Attributes
text = resources.getString(R.string.hello_android)
setTextColor(ContextCompat.getColor(context, R.color.white))
gravity = Gravity.CENTER
setTextSize(TypedValue.COMPLEX_UNIT_PX, resources.getDimension(R.dimen.size_xlarge_plus_plus))
typeface = ResourcesCompat.getFont(context, R.font.minimo_regular)
setTypeface(typeface, Typeface.BOLD)
})
frameLayout.addView(ImageView(this).apply {
// ImageView Unique Attributes
scaleType = ImageView.ScaleType.FIT_XY
setImageResource(R.drawable.bg_splash)
}, 0)
}
}</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"
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/bg_splash"/>
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/splash_text_margin_bottom"
android:padding="@dimen/size_small"
android:layout_gravity="bottom"
android:fontFamily="@string/roboto_font_family_regular"
android:gravity="center"
android:text="@string/hello_android"
android:textColor="@color/white"
android:textSize="@dimen/size_xlarge_plus_plus"
android:textStyle="bold"/>
</FrameLayout></code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
class SplashActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_splash)
}
}</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1>TextView & Spannable</h1>
<p>Spannable - это интерфейс, который позволяет задать разное форматирование выделенным частям текста</p>
<div class="half-left">
<pre class="small">Стиль задается экземплярами классов, которые реализуют ParcelableSpan</pre>
<ul>
<li>AbsoluteSizeSpan - размер текста</li>
<li>RelativeSizeSpan - размер текста относительно текста строки</li>
<li>BackgroundColorSpan - цвет фона</li>
<li>ForegroundColorSpan - цвет текста</li>
<li>LocaleSpan - Locale текста</li>
<li>StyleSpan - Typeface текста (bold, italic)</li>
<li>TypefaceSpan - Typeface текста (font)</li>
<li>URLSpan (: ClickableSpan) - реакция на нажатие</li>
<li>UnderlineSpan - нижнее подчеркивание</li>
<li>...</li>
</ul>
</div>
<div class="half-right center-horizontal">
<pre><code class="kotlin small" data-trim data-noescape>
abstract fun setSpan(what: Any!, start: Int, end: Int, flags: Int): Unit
abstract fun removeSpan(what: Any!): Unit
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
val text = SpannableString("This is underline and bold text.")
text.setSpan(UnderlineSpan(), 8, 17, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)
text.setSpan(StyleSpan(Typeface.BOLD), 22, 26, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
val text = SpannableString("This is red monospace text.")
text.setSpan(TypefaceSpan("monospace"), 7, 20, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)
text.setSpan(ForegroundColorSpan(Color.RED), 7, 20, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE - xx<span style="color: red;">XXX</span>xx - xxN<span
style="color: red;">XXX</span>Nxx
Spanned.SPAN_EXCLUSIVE_INCLUSIVE - xx<span style="color: red;">XXX</span>xx - xxN<span
style="color: red;">XXXN</span>xx
Spanned.SPAN_INCLUSIVE_EXCLUSIVE - xx<span style="color: red;">XXX</span>xx - xx<span
style="color: red;">NXXX</span>Nxx
Spanned.SPAN_INCLUSIVE_INCLUSIVE - xx<span style="color: red;">XXX</span>xx - xx<span
style="color: red;">NXXXN</span>xx
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1>LinearLayout</h1>
<div class="half-left">
<h3>LinearLayout Unique Attributes</h3>
<pre><code class="xml small" data-trim data-noescape>
android:orientation – horizontal/vertical
android:weightSum – назначает суммарный вес для дочерних элементов
android:layout_weight – назначает индивидуальный вес для дочернего элемента</code></pre>
<h3 class="fragment" data-fragment-index="1">EditText Unique Attributes</h3>
<pre class="fragment" data-fragment-index="1"><code class="xml small" data-trim data-noescape>
android:hint - подсказка, видна пока EditText пустой
android:textColorHint - цвет подсказки
android:inputType - тип клавиатуры (email, телефон и т.д.)
android:digits - список допустимых символов</code></pre>
<h3 class="fragment" data-fragment-index="2">Взаимодествие с клавиатурой</h3>
<pre class="fragment" data-fragment-index="2">
1) Клавиатура - это отдельное приложение
2) Изменять размер клавиатуры не нужно - нужно следить за изменениями размера layout
3) UI компоненты лучше разместить в ScrollView
4) Помогайте пользователю с помощью атрибутов inputType и imeOptions
</pre>
</div>
<div class="half-right center-horizontal">
<img src="lecture/layouts_ui/linear_layout_example.png" width="50%"/>
</div>
</section>
<section class="center center-horizontal">
<h1>Handle User Input</h1>
<div class="third-left-center">
<pre><code class="kotlin small" data-trim data-noescape>
class LoginActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_login)
button.setOnClickListener { login() }
emailEditText.addTextChangedListener(object : TextWatcher {
override fun afterTextChanged(text: Editable?) {
// text is modified and is editable: can be corrected (formatted) here
}
override fun beforeTextChanged(text: CharSequence?, start: Int, count: Int, after: Int) {
// text is in previous state
}
override fun onTextChanged(text: CharSequence?, start: Int, before: Int, count: Int) {
// text is modified, is not editable
}
})
passwordEditText.setOnEditorActionListener { _, actionId, _ ->
when (actionId) {
EditorInfo.IME_ACTION_DONE -> {
login()
true
}
else -> false
}
}
}
}</code></pre>
</div>
<div class="third-right center-horizontal">
<img src="lecture/layouts_ui/linear_layout_example.png" width="75%"/>
</div>
</section>
<section class="center center-horizontal">
<h1>RelativeLayout</h1>
<div class="half-left">
<h3>Атрибуты, связанные с родителем</h3>
<pre><code class="small" data-trim data-noescape>
android:layout_alignParentBottom - выравнивание относительно нижнего края
android:layout_alignParentLeft - выравнивание относительно левого края
android:layout_alignParentRight - выравнивание относительно правого края
android:layout_alignParentTop - выравнивание относительно верхнего края
android:layout_centerInParent - выравнивание по центру родителя
android:layout_centerHorizontal - выравнивание по центру + по горизонтали
android:layout_centerVertical - выравнивание по центру + по вертикали</code></pre>
<h3>Атрибуты, связанные с соседними View</h3>
<pre><code class="small" data-trim data-noescape>
android:layout_above - размещается над указанным View
android:layout_below - размещается под указанным View
android:layout_alignLeft - выравнивается по левому краю
android:layout_alignRight - выравнивается по правому краю
android:layout_alignTop - выравнивается по верхнему краю
android:layout_alignBottom - выравнивается по нижнему краю
android:layout_toLeftOf - правый край компонента размещается слева
android:layout_toRightOf - левый край компонент размещается справа</code></pre>
</div>
<div class="half-right center-horizontal">
<img src="lecture/layouts_ui/settings_example.png" width="50%"/>
</div>
</section>
<section class="center center-horizontal">
<h1>ConstraintLayout</h1>
<div class="half-left">
<ul>
<li>Relative positioning</li>
<li>Margins</li>
<li>Centering positioning</li>
<li>Circular positioning</li>
<li>Visibility behavior</li>
<li>Dimension constraints</li>
<li>Chains</li>
<li>Virtual Helpers objects</li>
</ul>
</div>
<div class="half-right center-horizontal">
<img src="lecture/layouts_ui/constraint_layout_example.png" width="80%"/>
</div>
</section>
<section class="center center-horizontal">
<h1>Centering & Positioning</h1>
<div class="third-left">
<img src="lecture/layouts_ui/basic_constraints.png" width="100%"/>
</div>
<div class="third-center">
<pre><code class="xml small" data-trim data-noescape>
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintLeft_toLeftOf="@id/view"
app:layout_constraintRight_toRightOf="@id/view"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="@id/view"
app:layout_constraintBaseline_toBaselineOf="@id/view"
app:layout_constraintStart_toEndOf="@id/view"
app:layout_constraintLeft_toRightOf="@id/view"
app:layout_constraintEnd_toStartOf="@id/view"
app:layout_constraintRight_toLeftOf="@id/view"
app:layout_constraintTop_toBottomOf="@id/view"
app:layout_constraintBottom_toTopOf="@id/view"
app:layout_goneMarginTop="@dimen/dimen"
app:layout_goneMarginBottom="@dimen/dimen"
app:layout_goneMarginStart="@dimen/dimen"
app:layout_goneMarginEnd="@dimen/dimen"
app:layout_goneMarginLeft="@dimen/dimen"
app:layout_goneMarginRight="@dimen/dimen"
app:layout_constraintHorizontal_bias="0.4"
app:layout_constraintDimensionRatio="4:3"
app:layout_constraintCircle="@id/view"
app:layout_constraintCircleAngle="90"
app:layout_constraintCircleRadius="100dp"</code></pre>
</div>
<div class="third-right">
<img src="lecture/layouts_ui/positioning_constraints.png" width="100%"/>
</div>
<p><a href="https://developer.android.com/reference/android/support/constraint/ConstraintLayout">ConstraintLayout
docs</a></p>
</section>
<section class="center center-horizontal">
<h1>Chains & Virtual Helpers objects</h1>
<div class="half-left">
<h3>Chains</h3>
<pre><code class="xml small" data-trim data-noescape>
app:layout_constraintHorizontal_chainStyle="spread"
app:layout_constraintVertical_chainStyle="spread"
app:layout_constraintHorizontal_chainStyle="spread_inside"
app:layout_constraintVertical_chainStyle="spread_inside"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintVertical_chainStyle="packed"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintVertical_weight="1"</code></pre>
<h3 class="fragment" data-fragment-index="1">GuideLine</h3>
<pre class="fragment" data-fragment-index="1"><code class="xml small" data-trim data-noescape>
app:layout_constraintGuide_percent="0.5"
app:layout_constraintGuide_begin="10dp"
app:layout_constraintGuide_end="150dp"</code></pre>
<h3 class="fragment" data-fragment-index="2">Barriers</h3>
<pre class="fragment" data-fragment-index="2"><code class="xml small" data-trim data-noescape>
app:barrierDirection="right"
app:constraint_referenced_ids="button,text_view"</code></pre>
</div>
<div class="half-right center-horizontal">
<img src="lecture/layouts_ui/chain_types.png" width="100%"/>
<img class="fragment" data-fragment-index="2" src="lecture/layouts_ui/barrier_start.png" width="40%"/>
<img class="fragment" data-fragment-index="2" src="lecture/layouts_ui/barrier_end.png" width="40%"/>
</div>
</section>
<section class="center center-horizontal">
<h1>FlexboxLayout</h1>
<div class="half-left">
<h3>Позиционирование в FlexboxLayout:</h3>
<pre data-trim data-noescape>
<b>flexWrap</b> - однострочный или многострочный контейнер
(nowrap(default), wrap, wrap_reverse)
<b>flexDirection</b> - направление главной оси
(row(default), row_reverse, column, column_reverse)
<b>justifyContent</b> - выравнивание вдоль главной оси
(flex_start(default), flex_end, center, space_between, space_around)
<b>alignItems</b> - выравнивание вдоль поперечной оси
(stretch(default), flex_start, flex_end, center, baseline)
<b>alignContent</b> - выравнивание строк в контейнере
(stretch(default), flex_start, flex_end, center,
space_between, space_around)</pre>
<h3>Разделители в FlexboxLayout:</h3>
<pre data-trim data-noescape>
<b>showDividerHorizontal</b> - none | beginning | middle | end
<b>showDividerVertical</b> - none | beginning | middle | end
<b>dividerDrawableHorizontal</b> - горизонтальные разделители
<b>dividerDrawableVertical</b> - вертикальные разделители
<b>showDivider, dividerDrawable</b> - горизонтальные и вертикальные разделители</pre>
</div>
<div class="half-right center-horizontal">
<img src="lecture/layouts_ui/flexbox_layout_example.png" width="80%"/>
<h3>Атрибуты дочерних View в FlexboxLayout:</h3>
<pre data-trim data-noescape>
<b>layout_flexGrow</b> - насколько View будет увеличиваться,
если распределяется положительное пространство в строке
<b>layout_flexShrink</b> - насколько View будет уменьшаться,
если распределяется отрицательное пространство в строке
<b>layout_alignSelf</b> - выравнивание View вдоль поперечной оси
<b>layout_flexBasisPercent</b> - View будет пытаться увеличиться
согласно проценту от размера родителя
<b>layout_minWidth / layout_minHeight</b> - ограничивает min размеры View
<b>layout_maxWidth / layout_maxHeight</b> - ограничивает max размеры View
<b>layout_order</b> - порядок View в контейнере
<b>layout_wrapBefore</b> - перенос View на новую строку</pre>
</div>
<p><a href="https://github.com/google/flexbox-layout">FlexboxLayout docs</a></p>
</section>
<section>
<h1>Дополнительные ссылки</h1>
<br>
<ul>
<li><p><a href="http://developer.android.com/reference/android/view/View.html">View</a></p></li>
<li><p><a href="https://developer.android.com/guide/topics/ui/declaring-layout">Layouts</a></p></li>
<li><p><a href="https://developer.android.com/reference/android/support/constraint/ConstraintLayout">ConstraintLayout
docs</a></p></li>
<li><p><a href="https://github.com/google/flexbox-layout">FlexboxLayout docs</a></p></li>
<li><p><a href="http://developer.android.com/guide/topics/resources/drawable-resource.html">Drawable
Resources</a></p></li>
<li><p><a href="https://medium.com/androiddevelopers/spantastic-text-styling-with-spans-17b0c16b4568">Advanced
TextView customization: Spannable</a></p></li>
<li><p><a
href="https://medium.com/mindorks/deep-dive-in-android-text-and-best-practices-part-1-6385b28eeb94">Android
Text and Best practices</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
})