-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlecture_12_animations.html
1253 lines (1207 loc) · 68.6 KB
/
lecture_12_animations.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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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 Animations</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 Animations</h1>
<div class="title-separator"></div>
<h2>автор:</h2>
<p>Распутина Татьяна</p>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Что такое анимация?</h1>
<div class="center-horizontal">
<p>Воспроизведение кадров во времени с некоторой трансформацией и сглаживанием (рендеринг)</p>
<ul>
<li>Решают проблему недостаточной интерактивности UI</li>
<li>Позволяют фокусировать внимание</li>
<li>Обладают силой убеждения</li>
<li>Улучшают понимание навигации</li>
<li>Подсвечивают реакции на пользовательский ввод и нажатие на элементы</li>
<li>...</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Какое время отрисовки кадра?</h1>
<div class="center-horizontal">
<ul>
<li>10-12 fps - четкое движение, глазу видно отдельные кадры</li>
<li>24 fps - плавное движение, размытие движений - отдельные кадры сливаются</li>
<li>30 fps - анимации похожие на "живые", могут выглядеть не убедительно</li>
<li>60 fps - идеальная анимация для глаза, высококачественное плавное движение</li>
<li>1000 ms / 60 frames = 16.666 ms/frame</li>
<li class="fragment" data-fragment-index="1">Если приложение отрисовывает кадр дольше 16ms, то
появляется dropped frame - Jank
</li>
<li class="fragment" data-fragment-index="1"><span
style="color: red;">Hitching, Lag, Stutter, Jank:</span> глаз отлавливает дискретность в
анимациях: если один кадр тормозит, пользователь сразу заметит
</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Overview</h1>
<div class="center-horizontal">
<ul>
<li>View Animation</li>
<li>Drawable Animation</li>
<li>ValueAnimator</li>
<li>ObjectAnimator</li>
<li>ViewPropertyAnimator</li>
<li>Layout Transition</li>
<li>Transitions Framework</li>
<li>Dynamic Animation</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">View Animation</h1>
<div class="half-left">
<ul>
<li>Анимации через Animation были в Android до появления Animator</li>
<li>Простый анимации для View: alpha, rotate, scale, translate</li>
<li>Представление View меняется на этапе отрисовки</li>
<li><span style="color: red;">Важно:</span> параметры View не меняются в процессе анимаций</li>
</ul>
<p>Code ScaleAnimation:</p>
<pre><code class="kotlin small" data-trim data-noescape>
view.startAnimation(
ScaleAnimation(0f, 1f, 0f, 1f, 0f, view.height.toFloat())
.apply {
duration = 300
interpolator = AccelerateInterpolator()
fillAfter = true
}
)
view.startAnimation(
AnimationUtils.loadAnimation(context, R.anim.pulse)
)
</code></pre>
</div>
<div class="half-right">
<p>XML pulse animation:</p>
<pre><code class="xml small" data-trim data-noescape>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="@integer/animation_time_1500"
android:fromXScale="1"
android:fromYScale="1"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:repeatMode="reverse"
android:toXScale="0.9"
android:toYScale="0.9"/>
</code></pre>
<p>XML shake animation:</p>
<pre><code class="xml small" data-trim data-noescape>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator">
<translate
android:duration="@integer/animation_time_50"
android:fromXDelta="-5"
android:repeatCount="2"
android:repeatMode="reverse"
android:toXDelta="5"/>
</set>
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Drawable Animation</h1>
<div class="half-left">
<ul>
<li>Покадровая анимация: новый Drawable загружается на каждый кадр</li>
<li><span style="color: red;">Важно:</span> большое потребление ресурсов, возможность получить
OutOfMemoryException
</li>
</ul>
</div>
<div class="half-right">
<pre><code class="xml small" data-trim data-noescape>
<animation-list android:id="@+id/icon" android:oneshot="false">
<item android:drawable="@drawable/icon0" android:duration="@integer/animation_fast" />
<item android:drawable="@drawable/icon1" android:duration="@integer/animation_fast" />
<item android:drawable="@drawable/icon2" android:duration="@integer/animation_fast" />
<item android:drawable="@drawable/icon3" android:duration="@integer/animation_fast" />
<item android:drawable="@drawable/icon4" android:duration="@integer/animation_fast" />
</animation-list>
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">ValueAnimator</h1>
<div class="half-left">
<ul>
<li>Позволяет анимировать любое свойство через Integer, Float или Object</li>
<li>Свойство меняется программно внутри UpdateListener</li>
<li>Не привязан к жизненному циклу View</li>
<li>Есть собственная иерархия вызовов в процессе формирования кадров</li>
<li>Можно одновременно анимировать несколько View элементов</li>
</ul>
</div>
<div class="half-right">
<pre><code class="kotlin small" data-trim data-noescape>
val animationDuration = resources.getInteger(R.integer.animation_time_100).toLong()
val animator = ValueAnimator.ofInt(start, end)
.apply {
duration = animationDuration
repeatCount = 1
repeatMode = ValueAnimator.REVERSE
addUpdateListener { animation ->
view.setPadding(
view.paddingLeft,
animation.animatedValue as Int,
view.paddingRight,
view.paddingBottom
)
}
addListener(object : Animator.AnimatorListener {
override fun onAnimationStart(animator: Animator?) { }
override fun onAnimationEnd(animator: Animator?) { }
override fun onAnimationCancel(animator: Animator?) { }
override fun onAnimationRepeat(animator: Animator?) { }
})
}
.also { it.start() }
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">ValueAnimator</h1>
<div class="half-left">
<ul>
<li>Время переводится в интервал [0.0, 1.0]</li>
<li>TimeInterpolator - функция, которая определяет с какой скоростью происходит анимация</li>
<li>TypeEvaluator - как должен изменяться объект в процессе анимации относительно времени</li>
<li>Можно писать свои реализации для TimeInterpolator и TypeEvaluator</li>
<li>TypeEvaluator используется для изменения сложных объектов или для изменения примитивов
(RectEvaluator, ArgbEvaluator)
</li>
</ul>
</div>
<div class="half-right">
<img src="lecture/animations/value_animator.png" width="75%"/>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">TimeInterpolator</h1>
<div class="half-left">
<ul>
<li>LinearInterpolator - функция с постоянной скоростью или линейная анимация</li>
<li>AccelerateInterpolator - функция с увеличивающейся скоростью (для пропадающих элементов)</li>
<li>DecelerateInterpolator - функция с уменьшающейся скоростью (для появляющихся элементов)</li>
<li>AccelerateDecelerateInterpolator</li>
</ul>
<p>Material Interpolators - более плавные</p>
<ul>
<li>FastOutLinearInInterpolator</li>
<li>LinearOutSlowInInterpolator</li>
<li>FastOutSlowInInterpolator</li>
</ul>
</div>
<div class="half-right">
<img src="lecture/animations/interpolator.png" width="100%" height="auto"/>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">ObjectAnimator</h1>
<div class="half-left">
<ul>
<li>Расширение ValueAnimator, имеет упрощенное API</li>
<li>Можно указать конкретные свойства объекта, которые ObjectAnimator меняет автоматически</li>
<li>Значение Property может быть задано с помощью наследника Property или явно строкой</li>
<li>Не может анимировать два объекта одновременно: нужны разные экземпляры ObjectAnimator</li>
<li><span style="color: red;">Важно:</span> задание Property через строку вызывает методы
Reflection!
</li>
</ul>
</div>
<div class="half-right">
<p>Property:</p>
<ul>
<li>View.ALPHA</li>
<li>View.TRANSLATION_X (_Y / _Z)</li>
<li>View.X / View.Y / View.Z</li>
<li>View.ROTATION</li>
<li>View.SCALE</li>
<li>Можно создать свои Property!</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">ObjectAnimator</h1>
<div class="half-left">
<p>XML:</p>
<pre><code class="xml small" data-trim data-noescape>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:ordering="sequentially">
<objectAnimator
android:propertyName="alpha"
android:duration="500"
android:valueFrom="0f"
android:valueTo="1f"/>
<objectAnimator
android:propertyName="rotation"
android:duration="500"
android:valueType="floatType"
android:valueFrom="0f"
android:valueTo="90f" />
</set>
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
val animator = AnimatorInflater
.loadAnimator(context, R.animator.animator_set)
.let { it as AnimatorSet }
.apply { setTarget(view) }
.also { it.start() }
</code></pre>
</div>
<div class="half-right">
<p>Code:</p>
<pre><code class="kotlin small" data-trim data-noescape>
val pulseAnimator = ObjectAnimator
.ofPropertyValuesHolder(
view,
PropertyValuesHolder.ofFloat(View.SCALE_X, 1f),
PropertyValuesHolder.ofFloat(View.SCALE_Y, 1f)
)
.apply {
duration = resources.getInteger(R.integer.animation_time_500).toLong()
repeatCount = ValueAnimator.INFINITE
repeatMode = ValueAnimator.REVERSE
setAutoCancel(true)
}
.also { it.start() }
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
val start = view.translationY
val end = start + update
val animator = ObjectAnimator.ofFloat(view, "translationY", start, end)
.apply { duration = resources.getInteger(R.integer.animation_time_200).toLong() }
.also { it.start() }
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">AnimatorSet</h1>
<div class="half-left">
<ul>
<li>Позволяет воспроизводить несколько анимаций: одновременно или последовательно</li>
<li>play(animator1) - передается главный аниматор</li>
<li>with(animator2) - для воспроизведения одновременно с аниматором в play(animator1)</li>
<li>before(animator2) - для воспроизведения до</li>
<li>after(animator2) - для воспроизведения после</li>
<li>playTogether(animator1, animator2) - для воспроизведения одновременно</li>
<li>playSequentially(animator1, animator2) - для воспроизведения последовательно</li>
</ul>
</div>
<div class="half-right">
<p>Code:</p>
<pre><code class="kotlin small" data-trim data-noescape>
val animator1 = AnimatorInflater.loadAnimator(context, R.animator.animator_1)
val animator2 = AnimatorInflater.loadAnimator(context, R.animator.animator_2)
val animator3 = AnimatorInflater.loadAnimator(context, R.animator.animator_3)
val animator4 = AnimatorInflater.loadAnimator(context, R.animator.animator_4)
val animator = AnimatorSet()
.apply {
play(animator1)
.before(animator2)
.with(animator3)
.after(animator4)
}
.also { it.start() }
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">ViewPropertyAnimator</h1>
<div class="half-left">
<ul>
<li>Работает на основе ValueAnimator, удобный API для простых свойств</li>
<li>Может быть быстрее ObjectAnimator (если аниминуется несколько Property)</li>
<li>Набор Property ограничен</li>
<li><span style="color: red;">Важно:</span> не можем сделать анимации кастомных атрибутов</li>
</ul>
</div>
<div class="half-right">
<pre><code class="kotlin small" data-trim data-noescape>
view.animate().alpha(0f).alphaBy(1f).start()
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
view.animate().x(500f).y(500f)
// animate absolute position
// was x=100, y=100
// start1: x=500, y=500
// start2: x=500, y=500
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
view.animate().xBy(500f).yBy(500f)
// animate absolute position by value
// was x=100, y=100
// start1: x=100+500, y=100+500
// start2: x=100+500+500, y=100+500+500
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
view.animate().translationX(500f).translationY(500f)
// animate left-top position by value
// was x=100, y=100
// start1: x=100+500, y=100+500
// start2: x=100+500, y=100+500
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
view.animate().translationXBy(500f).translationYBy(500f)
// animate left-top position by value
// was x=100, y=100
// start1: x=100+500, y=100+500
// start2: x=100+500+500, y=100+500+500
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Как завершить анимации?</h1>
<div class="center-horizontal">
<ul>
<li>view.clearAnimation() - для View Animation</li>
<li>view.animate().cancel() - для ViewPropertyAnimator</li>
<li>animator.cancel() - ValueAnimator / ObjectAnimator</li>
<li><span style="color: red;">Важно:</span> при уходе с экрана может быть утечка Context - нужно
останавливать аниматоры
</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Layout Transition</h1>
<div class="half-left">
<ul>
<li>Работает на основе ValueAnimator</li>
<li>Флаг в XML: android:animateLayoutChanges="true"</li>
<li>Запускает анимацию на изменение положения, видимости или размера View внутри ViewGroup</li>
<li>Решает проблему временного прерывания анимации из-за потери фреймов</li>
<li>Анимирует прямых детей ViewGroup</li>
<li>При анимации сложной иерархии может привести к laggy behavior из-за флага
animateParentHierarchy
</li>
<li>При анимации нескольких изменений будет применяться только для последнего изменения</li>
</ul>
</div>
<div class="half-right">
<ul>
<li>Appearing (addView / setVisibility)</li>
<li>Disappearing (removeView / setVisibility)</li>
<li>Change appearing - изменение родителей при Appearing</li>
<li>Change disappearing - изменение родителей при Disappearing</li>
<li>Changing - анимирует изменение размеров</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Transitions Framework</h1>
<div class="half-left">
<ul>
<li>Вводится понятие Transition и Scene</li>
<li>Transition - инкапсулирует класс анимаций</li>
<li>Scene - состояние до и после анимации</li>
<li>Анимирует всю иерархию View</li>
<li>Решает проблему временного прерывания анимации из-за потери фреймов</li>
<li>Появляется вместе с Material Design (Android 4.4+)</li>
<li>Можно делать свои Transition</li>
<li>Можно использовать для сложных иерархий View</li>
</ul>
</div>
<div class="half-right">
<p>Android 4.4+:</p>
<ul>
<li>ChangeBounds</li>
<li>Fade</li>
</ul>
<p>Android 5.+:</p>
<ul>
<li>ChangeTransform</li>
<li>Explode</li>
<li>Slide</li>
<li>ChangeImageTransform</li>
<li>ChangeClipBounds</li>
</ul>
<p>Android 6.+:</p>
<ul>
<li>ChangeScroll</li>
</ul>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Transitions Framework: XML</h1>
<div class="center-horizontal">
<pre><code class="xml small" data-trim data-noescape>
<transitionSet xmlns:android="http://schemas.android.com/apk/res/android"
android:transitionOrdering="sequential">
<fade android:fadingMode="fade_out">
<targets>
<target android:targetId="@id/view" />
</targets>
</fade>
<changeBounds/>
<fade android:fadingMode="fade_in"/>
</transitionSet>
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
TransitionManager.beginDelayedTransition(
viewGroup,
TransitionInflater.from(viewGroup.context).inflateTransition(R.transition.transition_set)
)
val newSize = resources.getDimensionPixelSize(R.dimen.size_large)
view.layoutParams = view.layoutParams
.apply {
width = newSize
height = newSize
}
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Transitions Framework: Code</h1>
<div class="center-horizontal">
<pre><code class="kotlin small" data-trim data-noescape>
val transitions = TransitionSet()
.apply {
addTransition(Slide())
addTransition(ChangeBounds())
addTarget(R.id.view)
addListener(object : Transition.TransitionListener {
override fun onTransitionStart(transition: Transition?) {}
override fun onTransitionEnd(transition: Transition?) {}
override fun onTransitionResume(transition: Transition?) {}
override fun onTransitionPause(transition: Transition?) {}
override fun onTransitionCancel(transition: Transition?) {}
})
ordering = TransitionSet.ORDERING_TOGETHER // ORDERING_SEQUENTIAL
duration = resources.getInteger(R.integer.animation_time_500).toLong()
interpolator = AccelerateInterpolator()
}
TransitionManager.beginDelayedTransition(viewGroup, transitions)
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Transitions Framework: Scene</h1>
<div class="half-left center-horizontal">
<p>res/layout/view_root.xml</p>
<pre><code class="xml small" data-trim data-noescape>
<FrameLayout
android:id="@+id/viewGroup"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/view_scene1"/>
</FrameLayout>
</code></pre>
<p>Code:</p>
<pre><code class="kotlin small" data-trim data-noescape>
val scene2: Scene = Scene
.getSceneForLayout(viewGroup, R.layout.view_scene2, this)
viewGroup.setOnClickListener {
val transitionSet = TransitionSet()
.apply {
addTransition(Fade())
addTransition(ChangeBounds())
addTransition(ChangeImageTransform())
ordering = TransitionSet.ORDERING_TOGETHER
duration = 1000L
interpolator = AccelerateInterpolator()
}
TransitionManager.go(scene2, transitionSet)
}
</code></pre>
</div>
<div class="half-right">
<p>res/layout/view_scene1.xml</p>
<pre><code class="xml small" data-trim data-noescape>
<FrameLayout
android:id="@+id/viewGroupScene1"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/targetView"
android:layout_width="@dimen/target_width_scene1"
android:layout_height="@dimen/target_height_scene1"
android:src="@drawable/ic_image"
android:scaleType="centerCrop"
android:layout_gravity="top|center_horizontal"/>
</FrameLayout>
</code></pre>
<p>res/layout/view_scene2.xml</p>
<pre><code class="xml small" data-trim data-noescape>
<FrameLayout
android:id="@+id/viewGroupScene2"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/targetView"
android:layout_width="@dimen/target_width_scene2"
android:layout_height="@dimen/target_height_scene2"
android:src="@drawable/ic_image"
android:scaleType="fitXY"
android:layout_gravity="bottom|center_horizontal"/>
</FrameLayout>
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Dynamic Animation</h1>
<div class="half-left">
<ul>
<li>Базируется на законах физики</li>
<li>FlingAnimation - пользователь своими действиями инициирует анимацию</li>
<li>SpringAnimation - анимация возврата к начальному значению</li>
<li>Позволяет изменить конечное значение во время анимации</li>
<li>Нет: duration</li>
<li>Нет: interpolator</li>
<li>Есть: физика (конечная позиция и начальная скорость)</li>
<li>FlingAnimation доп. параметр: трение (friction)</li>
<li>SpringAnimation доп. параметр: жёсткость (stiffness) & затухание (damping ratio)</li>
</ul>
</div>
<div class="half-right">
<pre><code class="kotlin small" data-trim data-noescape>
val flingAnimation = FlingAnimation(view, DynamicAnimation.X)
.apply {
setStartVelocity(500f)
friction = 0.5f
}
.also { it.start() }
</code></pre>
<pre><code class="kotlin small" data-trim data-noescape>
val springAnimation = SpringAnimation(view, DynamicAnimation.SCALE_X)
.apply {
spring = SpringForce()
.apply {
finalPosition = view.x
dampingRatio = SpringForce.DAMPING_RATIO_HIGH_BOUNCY
stiffness = SpringForce.STIFFNESS_LOW
}
setStartVelocity(1000f)
}
.also { it.start() }
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">RecyclerView - ItemAnimator</h1>
<div class="half-left">
<ul>
<li>Анимация элементов внутри RecyclerView</li>
<li>canReuseUpdatedViewHolder(vh: ViewHolder) - определяет будет ли анимация вызываться после
изменения данных элемента
</li>
<li>recordPreLayoutInformation(...): ItemHolderInfo - вызывается RecyclerView до начала отрисовки
</li>
<li>ItemAnimator сохраняет информацию о View до перемещения, обновления или удаления</li>
<li>ItemHolderInfo передается в метод animateChange(oldVH: ViewHolder, newVH: ViewHolder, preInfo:
ItemHolderInfo, postInfo: ItemHolderInfo): Boolean
</li>
<li>RecyclerView вызывает animateChange(...) при notifyItemChanged(position: Int)</li>
</ul>
</div>
<div class="half-right">
<img src="https://cdn.dribbble.com/users/1784312/screenshots/4366193/sample5.gif" width="100%"
height="auto">
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">AnimatedVectorDrawable</h1>
<div class="half-left">
<ul>
<li>Расширение PropertyAnimation</li>
<li>Ресурс анимации - это стандартный objectAnimator</li>
<li>Количество командв исходном и конечном пути должно быть одинаковым</li>
</ul>
<pre><code class="xml small" data-trim data-noescape>
<animated-vector
android:drawable="@drawable/vector_drawable">
<target
android:name="start"
android:animation="@anim/start_animation" />
<target
android:name="end"
android:animation="@anim/end_animation"/>
</animated-vector>
</code></pre>
</div>
<div class="half-right">
<img src="https://cs4.pikabu.ru/post_img/2015/01/13/11/1421175572_2027214263.gif" width="70%"
height="auto">
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Activity / Fragment Transition</h1>
<div class="center-horizontal">
<img src="https://i.imgur.com/1cjqsSA.gif" width="20%" height="auto">
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Activity Shared Element Transition</h1>
<div class="half-left">
<ol>
<li>Добавить атрибут android:transitionName к View</li>
<li>Описать анимацию перехода View через XML: transitionSet</li>
<li>Передать ActivityOptions для второй Activity при запуске</li>
<li>Объявить анимации в темах Activity</li>
</ol>
</div>
<div class="half-right">
<p>In res/values/theme.xml:</p>
<pre><code class="xml small" data-trim data-noescape>
<item name="android:windowContentTransitions">true</item>
<item name="android:windowEnterTransition">@transition/transition_fade</item>
<item name="android:windowExitTransition">@transition/transition_fade</item>
<item name="android:windowSharedElementEnterTransition">@transition/transition_fade</item>
<item name="android:windowSharedElementExitTransition">@transition/transition_fade</item>
</code></pre>
<p>In res/layout/activity_layout.xml</p>
<pre><code class="xml small" data-trim data-noescape>
<ImageView
android:id="@+id/transitionView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:transitionName="transitionViewName"
... />
</code></pre>
<p>In ActivityStart.kt launch transition:</p>
<pre><code class="kotlin small" data-trim data-noescape>
val activityOptionsCompat: ActivityOptionsCompat = ActivityOptionsCompat
.makeSceneTransitionAnimation(this, transitionView, "transitionViewName")
val intent = Intent(this, ActivityEnd::class.java)
startActivity(intent, activityOptionsCompat.toBundle())
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">Fragment Shared Element Transition</h1>
<div class="half-left">
<ol>
<li>Добавить атрибут android:transitionName к View</li>
<li>Описать анимацию перехода View через XML: transitionSet</li>
<li>Описать для второго фрагмента анимации через сеттеры</li>
<li>Добавить SharedElement к FragmentTransaction</li>
</ol>
</div>
<div class="half-right">
<p>In res/layout/activity_layout.xml</p>
<pre><code class="xml small" data-trim data-noescape>
<ImageView
android:id="@+id/transitionView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:transitionName="transitionViewName"
... />
</code></pre>
<p>In StartFragment.kt:</p>
<pre><code class="kotlin small" data-trim data-noescape>
val endFragment = EndFragment.newInstance()
// possibly need to check: Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP
endFragment.setSharedElementEnterTransition(ChangeImageTransform())
endFragment.setSharedElementReturnTransition(ChangeImageTransform())
endFragment.setEnterTransition(Slide())
this.setExitTransition(Slide())
activity.supportFragmentManager
.beginTransaction()
.addSharedElement(transitionView, "transitionViewName")
.replace(R.id.container, endFragment)
.addToBackStack(null)
.commit()
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">DrawerLayout - Google I/O 2013</h1>
<div class="half-left">
<pre><code class="xml small" data-trim data-noescape>
<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<fragment
android:id="@+id/drawerMenu"
android:name="com.intership.example.DrawerMenuFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
tools:layout="@layout/fragment_drawer_menu"/>
</androidx.drawerlayout.widget.DrawerLayout>
</code></pre>
</div>
<div class="half-right">
<img src="https://i.stack.imgur.com/Un1GJ.gif" width="50%" height="auto">
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">DrawerLayout</h1>
<div class="half-left center-horizontal">
<pre><code class="kotlin small" data-trim data-noescape>
drawerLayout.openDrawer(drawerMenu)
drawerLayout.closeDrawer(drawerMenu)
drawerLayout.openDrawer(GravityCompat.START)
drawerLayout.closeDrawer(GravityCompat.START)
// проверить текущее состояние Drawer
drawerLayout.isDrawerOpen(drawerMenu)
drawerLayout.isDrawerOpen(GravityCompat.START)
// разблокировать для пользователя
drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED)
// заблокировать в закрытом состоянии
drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED)
// заблокировать в открытом состоянии
drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_OPEN)
// заблокировать в состоянии по умолчанию
drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNDEFINED)
</code></pre>
</div>
<div class="half-right">
<pre><code class="kotlin small" data-trim data-noescape>
drawerLayout.addDrawerListener(object : DrawerLayout.DrawerListener {
override fun onDrawerStateChanged(newState: Int) {
// DrawerLayout.STATE_IDLE
// DrawerLayout.STATE_DRAGGING
// DrawerLayout.STATE_SETTLING
}
override fun onDrawerSlide(drawerView: View, slideOffset: Float) {}
override fun onDrawerClosed(drawerView: View) {}
override fun onDrawerOpened(drawerView: View) {}
})
</code></pre>
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">CoordinatorLayout - Google I/O 2015</h1>
<div class="half-left">
<pre><code class="xml small" data-trim data-noescape>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:id="@+id/collapsingToolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/toolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax">
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/favorite_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:fabSize="normal"
app:layout_anchor="@id/appBarLayout"
app:layout_anchorGravity="bottom|end"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:src="@drawable/ic_fab_image"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</code></pre>
</div>
<div class="half-right">
<img src="https://hsto.org/getpro/habr/post_images/6b2/949/7e7/6b29497e7884c4bebc757a19cb187564.gif"
width="50%" height="auto">
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">MotionLayout - Google I/O 2018</h1>
<div class="half-left">
<p>A MotionLayout is a ConstraintLayout which allows you to animate layouts between various states. (©
Docs)</p>
<ul>
<li>Animated Vector Drawable</li>
<li>Property Animation Framework</li>
<li>LayoutTransition animations: TransitionManager</li>
<li>CoordinatorLayout</li>
</ul>
<p>Обратная совместимость: Android API >= 14 (IceCreamSandwich 4.0, 4.0.1, 4.0.2)</p>
<p>Полностью декларативный: можно описать сцены любой сложности в XML</p>
</div>
<div class="half-right">
<img src="https://cdn.dribbble.com/users/3573403/screenshots/6489543/shot1.gif" width="100%"
height="auto">
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">MotionLayout: overview</h1>
<div class="center">
<img src="https://miro.medium.com/max/700/1*ht1WQDkxsoeINtC2pwSfig.png" width="50%" height="auto">
</div>
</section>
<section class="center center-horizontal">
<h1 class="center-horizontal">MotionLayout: expandable top card example</h1>
<div class="half-left">
<pre><code class="xml small" data-trim data-noescape>
<androidx.constraintlayout.motion.widget.MotionLayout
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:id="@+id/motionLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutDescription="@xml/scene_main"
app:applyMotionScene="true"
app:progress="0.0"
app:currentState="@id/start"
app:motionDebug="SHOW_ALL"
tools:showPaths="true">
<View
android:id="@+id/cardBackgroundView"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/shape_white_large_cornered_bottom"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="@id/cardLayoutGuideline"
app:layout_constraintTop_toTopOf="parent"/>
<androidx.constraintlayout.widget.Guideline
android:id="@+id/cardLayoutGuideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"/>
<View android:id="@+id/view" ... />
</androidx.constraintlayout.motion.widget.MotionLayout>
</code></pre>
</div>
<div class="half-right">
<pre><code class="xml small" data-trim data-noescape>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:motion="http://schemas.android.com/apk/res-auto">
<Transition
motion:constraintSetStart="@id/start"
motion:constraintSetEnd="@id/end"
motion:motionInterpolator="linear"
motion:duration="1000">
<OnSwipe
motion:touchAnchorId="@id/cardBackgroundView"
motion:touchAnchorSide="bottom"
motion:dragDirection="dragUp"
motion:touchRegionId="@id/cardBackgroundView"/>
</Transition>
<ConstraintSet android:id="@+id/start">
<Constraint
android:id="@id/cardLayoutGuideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
motion:layout_constraintGuide_percent="0.8"/>
</ConstraintSet>
<ConstraintSet android:id="@+id/end">
<Constraint
android:id="@id/cardLayoutGuideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
motion:layout_constraintGuide_percent="0.05"/>
</ConstraintSet>
</MotionScene>
</code></pre>