-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
886 lines (611 loc) · 37.6 KB
/
index.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
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Mike Scamell</title>
<meta name="HandheldFriendly" content="True">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="assets/built/screen.css?v=d3727471f6">
<meta name="description" content="Android with the occasional dash of food">
<link rel="shortcut icon" href="favicon.png" type="image/png">
<link rel="canonical" href="https://mikescamell.com/">
<meta name="referrer" content="no-referrer-when-downgrade">
<meta property="og:site_name" content="Mike Scamell">
<meta property="og:type" content="website">
<meta property="og:title" content="Mike Scamell">
<meta property="og:description" content="Android with the occasional dash of food">
<meta property="og:url" content="http://localhost:2368/">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Mike Scamell">
<meta name="twitter:description" content="Android with the occasional dash of food">
<meta name="twitter:url" content="http://localhost:2368/">
<meta name="twitter:site" content="@mikescamell">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"publisher": {
"@type": "Organization",
"name": "Mike Scamell",
"logo": {
"@type": "ImageObject",
"url": "http://localhost:2368/favicon.png",
"width": 60,
"height": 60
}
},
"url": "http://localhost:2368/",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "http://localhost:2368/"
},
"description": "Android with the occasional dash of food"
}
</script>
<script src="public/ghost-sdk.js?v=d3727471f6"></script>
<script>
ghost.init({
clientId: "ghost-frontend",
clientSecret: "07d57a1d866f"
});
</script>
<meta name="generator" content="Ghost 2.22">
<link rel="alternate" type="application/rss+xml" title="Mike Scamell" href="https://mikescamell.com/rss/">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-59786101-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-59786101-4');
</script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/themes/prism.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/themes/prism-okaidia.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/plugins/unescaped-markup/prism-unescaped-markup.css">
</head>
<body class="home-template">
<div class="site-wrapper">
<header class="site-header outer no-image">
<div class="inner">
<div class="site-header-content">
<h1 class="site-title">
Mike Scamell
</h1>
<h2 class="site-description">Android with the occasional dash of food</h2>
</div>
<nav class="site-nav">
<div class="site-nav-left">
<ul class="nav" role="menu">
<li class="nav-blog nav-current" role="menuitem"><a href="https://mikescamell.com/">Blog</a></li>
<li class="nav-motionlayout" role="menuitem"><a href="https://mikescamell.com/tag/motionlayout/">MotionLayout</a></li>
<li class="nav-talks" role="menuitem"><a href="https://mikescamell.com/talks/">Talks</a></li>
<li class="nav-github" role="menuitem"><a href="https://github.com/mikescamell">Github</a></li>
<li class="nav-android-snacks-podcast" role="menuitem"><a href="https://androidsnacks.com/">Android Snacks Podcast</a></li>
</ul>
</div>
<div class="site-nav-right">
<div class="social-links">
<a class="social-link social-link-tw" href="https://twitter.com/mikescamell" title="Twitter" target="_blank" rel="noopener"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 32 32"><path d="M30.063 7.313c-.813 1.125-1.75 2.125-2.875 2.938v.75c0 1.563-.188 3.125-.688 4.625a15.088 15.088 0 0 1-2.063 4.438c-.875 1.438-2 2.688-3.25 3.813a15.015 15.015 0 0 1-4.625 2.563c-1.813.688-3.75 1-5.75 1-3.25 0-6.188-.875-8.875-2.625.438.063.875.125 1.375.125 2.688 0 5.063-.875 7.188-2.5-1.25 0-2.375-.375-3.375-1.125s-1.688-1.688-2.063-2.875c.438.063.813.125 1.125.125.5 0 1-.063 1.5-.25-1.313-.25-2.438-.938-3.313-1.938a5.673 5.673 0 0 1-1.313-3.688v-.063c.813.438 1.688.688 2.625.688a5.228 5.228 0 0 1-1.875-2c-.5-.875-.688-1.813-.688-2.75 0-1.063.25-2.063.75-2.938 1.438 1.75 3.188 3.188 5.25 4.25s4.313 1.688 6.688 1.813a5.579 5.579 0 0 1 1.5-5.438c1.125-1.125 2.5-1.688 4.125-1.688s3.063.625 4.188 1.813a11.48 11.48 0 0 0 3.688-1.375c-.438 1.375-1.313 2.438-2.563 3.188 1.125-.125 2.188-.438 3.313-.875z"></path></svg>
</a>
</div>
<a class="rss-button" href="https://feedly.com/i/subscription/feed/http://localhost:2368/rss/" title="RSS" target="_blank" rel="noopener"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><circle cx="6.18" cy="17.82" r="2.18"></circle><path d="M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"></path></svg>
</a>
</div>
</nav>
</div>
</header>
<main id="site-main" class="site-main outer">
<div class="inner">
<div class="post-feed">
<article class="post-card post tag-androiddev tag-animation tag-motionlayout tag-transition post-card-large">
<a class="post-card-image-link" href="motionlayout-quickie-constraint-subelements/">
<img class="post-card-image" srcset="content/images/size/w300/2019/05/MotionLayout-Quickie---Sub-Elements.jpg 300w,
content/images/size/w600/2019/05/MotionLayout-Quickie---Sub-Elements.jpgg 600w,
content/images/size/w1000/2019/05/MotionLayout-Quickie---Sub-Elements.jpg 1000w,
content/images/size/w2000/2019/05/MotionLayout-Quickie---Sub-Elements.jpg 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2019/05/MotionLayout-Quickie---Sub-Elements.jpg" alt="MotionLayout Quickie - Constraint Sub-Elements">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="motionlayout-quickie-constraint-subelements/">
<header class="post-card-header">
<span class="post-card-tags">androiddev</span>
<h2 class="post-card-title">MotionLayout Quickie - Constraint Sub-Elements</h2>
</header>
<section class="post-card-excerpt">
<p>Welcome to another MotionLayout Quickie! This week we'll be exploring MotionLayout sub-elements!All examples will be based on us using a simple MotionLayout with a start and end state and nothing else.The</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">3 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-motionlayout tag-androiddev tag-animation tag-transition featured ">
<a class="post-card-image-link" href="everyday_im_shuffling/">
<img class="post-card-image" srcset="content/images/size/w300/2019/05/everyday_im_shuffling_header-2.png 300w,
content/images/size/w600/2019/05/everyday_im_shuffling_header-2.pngg 600w,
content/images/size/w1000/2019/05/everyday_im_shuffling_header-2.png 1000w,
content/images/size/w2000/2019/05/everyday_im_shuffling_header-2.png 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2019/05/everyday_im_shuffling_header-2.png" alt="Everyday I'm Shuffling: Building the Monzo Plus card selection animation with MotionLayout">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="everyday_im_shuffling/">
<header class="post-card-header">
<span class="post-card-tags">motionlayout</span>
<h2 class="post-card-title">Everyday I'm Shuffling: Building the Monzo Plus card selection animation with MotionLayout</h2>
</header>
<section class="post-card-excerpt">
<p>A week or so ago Ataul Munim showcased his work building the Monzo Plus card selection animation using a custom view. The animation is fantastic! I love reading blog posts on how Android</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">9 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-motionlayout tag-androiddev tag-constraintlayout ">
<a class="post-card-image-link" href="motionlayoutquickie-ontouchup/">
<img class="post-card-image" srcset="content/images/size/w300/2019/05/MotionLayout-Quickie---onTouchUp.jpg 300w,
content/images/size/w600/2019/05/MotionLayout-Quickie---onTouchUp.jpgg 600w,
content/images/size/w1000/2019/05/MotionLayout-Quickie---onTouchUp.jpg 1000w,
content/images/size/w2000/2019/05/MotionLayout-Quickie---onTouchUp.jpg 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2019/05/MotionLayout-Quickie---onTouchUp.jpg" alt="MotionLayout Quickie - onTouchUp">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="motionlayoutquickie-ontouchup/">
<header class="post-card-header">
<span class="post-card-tags">motionlayout</span>
<h2 class="post-card-title">MotionLayout Quickie - onTouchUp</h2>
</header>
<section class="post-card-excerpt">
<p>ConstraintLayout has hit beta1! 🎉 And with this new update we have a new onTouchUp for the OnSwipe handler in a Transition that we can use in a MotionLayout.So, I've decided to write</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">3 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-androiddev tag-bottomnavigationview ">
<a class="post-card-image-link" href="bottoms-up-bottomnavigationview-updates-in-the-material-design-design-support-library/">
<img class="post-card-image" srcset="content/images/size/w300/2019/04/bottomappbar-3.jpg 300w,
content/images/size/w600/2019/04/bottomappbar-3.jpgg 600w,
content/images/size/w1000/2019/04/bottomappbar-3.jpg 1000w,
content/images/size/w2000/2019/04/bottomappbar-3.jpg 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2019/04/bottomappbar-3.jpg" alt="Bottoms Up! - BottomNavigationView Updates in the Material Components/Design Support Library">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="bottoms-up-bottomnavigationview-updates-in-the-material-design-design-support-library/">
<header class="post-card-header">
<span class="post-card-tags">androiddev</span>
<h2 class="post-card-title">Bottoms Up! - BottomNavigationView Updates in the Material Components/Design Support Library</h2>
</header>
<section class="post-card-excerpt">
<p>I've just removed the design support library and added the new Material Components library (com.google.android.material:material:1.0.0-alpha3 as of writing) and currently there's some sea birds outside making</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">3 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-androiddev tag-kotlin ">
<a class="post-card-image-link" href="a-sloths-guide-to-learning-kotlin/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/6322945345_2d629d3eb2_b.jpg 300w,
content/images/size/w600/2018/11/6322945345_2d629d3eb2_b.jpgg 600w,
content/images/size/w1000/2018/11/6322945345_2d629d3eb2_b.jpg 1000w,
content/images/size/w2000/2018/11/6322945345_2d629d3eb2_b.jpg 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/6322945345_2d629d3eb2_b.jpg" alt="A Sloth's guide to learning Kotlin">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="a-sloths-guide-to-learning-kotlin/">
<header class="post-card-header">
<span class="post-card-tags">androiddev</span>
<h2 class="post-card-title">A Sloth's guide to learning Kotlin</h2>
</header>
<section class="post-card-excerpt">
<p>I'm starting to learn Kotlin. I'm pretty sure a large majority of all Android devs are also doing this right now. There are plenty of blog posts, videos, podcasts, talks etc. etc. being</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">2 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-androiddev tag-sharedelementtranistions ">
<a class="post-card-image-link" href="shared-element-transitions-updates/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/Updates-1.png 300w,
content/images/size/w600/2018/11/Updates-1.pngg 600w,
content/images/size/w1000/2018/11/Updates-1.png 1000w,
content/images/size/w2000/2018/11/Updates-1.png 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/Updates-1.png" alt="Shared Element Transitions - Updates">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="shared-element-transitions-updates/">
<header class="post-card-header">
<span class="post-card-tags">androiddev</span>
<h2 class="post-card-title">Shared Element Transitions - Updates</h2>
</header>
<section class="post-card-excerpt">
<p>I didn't expect to get so many views on my Shared Element Transition blog series. But making it into Android Dev Digest and Android Weekly has increased the number of people looking at</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">2 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-sharedelementtranistions tag-androiddev post-card-large">
<a class="post-card-image-link" href="shared-element-transitions-part-5/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/flash_fix.png 300w,
content/images/size/w600/2018/11/flash_fix.pngg 600w,
content/images/size/w1000/2018/11/flash_fix.png 1000w,
content/images/size/w2000/2018/11/flash_fix.png 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/flash_fix.png" alt="Shared Element Transitions - Part 5: Fixing Flashing/Blinking">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="shared-element-transitions-part-5/">
<header class="post-card-header">
<span class="post-card-tags">sharedelementtranistions</span>
<h2 class="post-card-title">Shared Element Transitions - Part 5: Fixing Flashing/Blinking</h2>
</header>
<section class="post-card-excerpt">
<p>In part 4 of the series we explored combining Shared Element Transitions with RecyclerView.In part 5 we're going to fix the white flashing or blinking that you may have seen throughout the</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">4 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-androiddev tag-sharedelementtranistions ">
<a class="post-card-image-link" href="shared-element-transitions-part-4-recyclerview/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/recycler_view_feature-2.png 300w,
content/images/size/w600/2018/11/recycler_view_feature-2.pngg 600w,
content/images/size/w1000/2018/11/recycler_view_feature-2.png 1000w,
content/images/size/w2000/2018/11/recycler_view_feature-2.png 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/recycler_view_feature-2.png" alt="Shared Element Transitions - Part 4: RecyclerView">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="shared-element-transitions-part-4-recyclerview/">
<header class="post-card-header">
<span class="post-card-tags">androiddev</span>
<h2 class="post-card-title">Shared Element Transitions - Part 4: RecyclerView</h2>
</header>
<section class="post-card-excerpt">
<p>In part 3 of the series we looked at how to implement Shared Element Transitions when using Picasso or Glide.In part 4 we're going to look at implementing them with RecyclerView, a</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">7 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-androiddev tag-sharedelementtranistions ">
<a class="post-card-image-link" href="shared-element-transitions-part-3/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/shared_elements_part_3-6.png 300w,
content/images/size/w600/2018/11/shared_elements_part_3-6.pngg 600w,
content/images/size/w1000/2018/11/shared_elements_part_3-6.png 1000w,
content/images/size/w2000/2018/11/shared_elements_part_3-6.png 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/shared_elements_part_3-6.png" alt="Shared Element Transitions - Part 3: Picasso & Glide">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="shared-element-transitions-part-3/">
<header class="post-card-header">
<span class="post-card-tags">androiddev</span>
<h2 class="post-card-title">Shared Element Transitions - Part 3: Picasso & Glide</h2>
</header>
<section class="post-card-excerpt">
<p>In part 2 of this series we looked at guidelines for implementing our Shared Element Transitions and also how we utilise them when going from Fragment to Fragment.In part 3 we're going</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">4 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-androiddev tag-sharedelementtranistions ">
<a class="post-card-image-link" href="shared-element-transitions-part-2/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/shared_element_part_2-4.png 300w,
content/images/size/w600/2018/11/shared_element_part_2-4.pngg 600w,
content/images/size/w1000/2018/11/shared_element_part_2-4.png 1000w,
content/images/size/w2000/2018/11/shared_element_part_2-4.png 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/shared_element_part_2-4.png" alt="Shared Element Transitions - Part 2: Fragments">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="shared-element-transitions-part-2/">
<header class="post-card-header">
<span class="post-card-tags">androiddev</span>
<h2 class="post-card-title">Shared Element Transitions - Part 2: Fragments</h2>
</header>
<section class="post-card-excerpt">
<p>In part 1 we learned what Shared Element Transitions are, how they work and a simple example using Activity to Activity.In part 2 we're going to learn a little more on how</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">4 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-androiddev tag-sharedelementtranistions ">
<a class="post-card-image-link" href="shared-element-transitions-part-1/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/activity_transistion_feature.png 300w,
content/images/size/w600/2018/11/activity_transistion_feature.pngg 600w,
content/images/size/w1000/2018/11/activity_transistion_feature.png 1000w,
content/images/size/w2000/2018/11/activity_transistion_feature.png 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/activity_transistion_feature.png" alt="Shared Element Transitions - Part 1: Activities">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="shared-element-transitions-part-1/">
<header class="post-card-header">
<span class="post-card-tags">androiddev</span>
<h2 class="post-card-title">Shared Element Transitions - Part 1: Activities</h2>
</header>
<section class="post-card-excerpt">
<p>Shared Element Transitions are a great way of implementing Material motion and adding some flair to your app. Shared element transitions help the user on their journey through your app by giving them</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">5 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-androiddev tag-okhttp ">
<a class="post-card-image-link" href="gotcha-when-offline-caching-with-okhttp3/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/7spg5olfexc-roman-kraft--1-.jpg 300w,
content/images/size/w600/2018/11/7spg5olfexc-roman-kraft--1-.jpgg 600w,
content/images/size/w1000/2018/11/7spg5olfexc-roman-kraft--1-.jpg 1000w,
content/images/size/w2000/2018/11/7spg5olfexc-roman-kraft--1-.jpg 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/7spg5olfexc-roman-kraft--1-.jpg" alt="Gotcha when offline caching with OkHttp3">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="gotcha-when-offline-caching-with-okhttp3/">
<header class="post-card-header">
<span class="post-card-tags">androiddev</span>
<h2 class="post-card-title">Gotcha when offline caching with OkHttp3</h2>
</header>
<section class="post-card-excerpt">
<p>I recently was trying to use an offline cache with OkHttp to store some information. This is handy if the user goes offline and we want them to still see some information.I'd</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">2 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-vectordrawable tag-vectordrawablecompat tag-androiddev post-card-large">
<a class="post-card-image-link" href="the-vector-drawable-compat-diet/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/this_app_did_the_title_image-3.jpg 300w,
content/images/size/w600/2018/11/this_app_did_the_title_image-3.jpgg 600w,
content/images/size/w1000/2018/11/this_app_did_the_title_image-3.jpg 1000w,
content/images/size/w2000/2018/11/this_app_did_the_title_image-3.jpg 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/this_app_did_the_title_image-3.jpg" alt="This app did the VectorDrawableCompat diet and shed 2.4MB! And it’s so easy, you can do it too!">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="the-vector-drawable-compat-diet/">
<header class="post-card-header">
<span class="post-card-tags">vectordrawable</span>
<h2 class="post-card-title">This app did the VectorDrawableCompat diet and shed 2.4MB! And it’s so easy, you can do it too!</h2>
</header>
<section class="post-card-excerpt">
<p>This article was orginally posted on Medium on March 21st, 2016. You can find it here.If you haven’t heard already, Android now has VectorDrawableCompat, hurrah!There have been a few articles</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">4 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-food tag-keto tag-recipe ">
<a class="post-card-image-link" href="low-carb-chocolate-peanut-butter-bombs/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/IMG_20160320_134706.jpg 300w,
content/images/size/w600/2018/11/IMG_20160320_134706.jpgg 600w,
content/images/size/w1000/2018/11/IMG_20160320_134706.jpg 1000w,
content/images/size/w2000/2018/11/IMG_20160320_134706.jpg 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/IMG_20160320_134706.jpg" alt="Low Carb Chocolate Peanut Butter Bombs">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="low-carb-chocolate-peanut-butter-bombs/">
<header class="post-card-header">
<span class="post-card-tags">food</span>
<h2 class="post-card-title">Low Carb Chocolate Peanut Butter Bombs</h2>
</header>
<section class="post-card-excerpt">
<p>I've recently joined the keto brigade. I'm enjoying the weight loss and experimenting with different foods. Even if it is at the expense of carbs. I'm also enjoying all the bacon, chocolate and</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">3 min read</span>
</footer>
</div>
</article>
<article class="post-card post tag-mma tag-university ">
<a class="post-card-image-link" href="5-weeks-training-for-36-seconds/">
<img class="post-card-image" srcset="content/images/size/w300/2018/11/5-weeks-for-36-seconds-feature.jpg 300w,
content/images/size/w600/2018/11/5-weeks-for-36-seconds-feature.jpgg 600w,
content/images/size/w1000/2018/11/5-weeks-for-36-seconds-feature.jpg 1000w,
content/images/size/w2000/2018/11/5-weeks-for-36-seconds-feature.jpg 2000w" sizes="(max-width: 1000px) 400px, 700px" src="content/images/size/w600/2018/11/5-weeks-for-36-seconds-feature.jpg" alt="5 Weeks Training for 36 seconds">
</a>
<div class="post-card-content">
<a class="post-card-content-link" href="5-weeks-training-for-36-seconds/">
<header class="post-card-header">
<span class="post-card-tags">MMA</span>
<h2 class="post-card-title">5 Weeks Training for 36 seconds</h2>
</header>
<section class="post-card-excerpt">
<p>This past Sunday saw me compete in the annual White Rose Varsity against the University of York.If you couldn't tell by my picture it was in the sport of MMA (Mixed Martial</p>
</section>
</a>
<footer class="post-card-meta">
<ul class="author-list">
<li class="author-list-item">
<div class="author-name-tooltip">
Mike Scamell
</div>
<a href="author/mike/" class="static-avatar">
<img class="author-profile-image" src="http://www.gravatar.com/avatar/2a389d50c33966a79a8cf6fe29c6080e?s=250&d=mm&r=x" alt="Mike Scamell">
</a>
</li>
</ul>
<span class="reading-time">8 min read</span>
</footer>
</div>
</article>
</div>
</div>
</main>
<footer class="site-footer outer">
<div class="site-footer-content inner">
<section class="copyright"><a href="https://mikescamell.com">Mike Scamell</a> © 2019</section>
<nav class="site-footer-nav">
<a href="https://mikescamell.com">Latest Posts</a>
<a href="https://twitter.com/mikescamell" target="_blank" rel="noopener">Twitter</a>
<a href="https://ghost.org" target="_blank" rel="noopener">Ghost</a>
</nav>
</div>
</footer>
</div>
<script>
var images = document.querySelectorAll('.kg-gallery-image img');
images.forEach(function (image) {
var container = image.closest('.kg-gallery-image');
var width = image.attributes.width.value;
var height = image.attributes.height.value;
var ratio = width / height;
container.style.flex = ratio + ' 1 0%';
})
</script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous">
</script>
<script type="text/javascript" src="assets/built/jquery.fitvids.js?v=d3727471f6"></script>
<script src="assets/built/infinitescroll.js?v=d3727471f6"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/prism.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/components/prism-xml.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/components/prism-kotlin.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/plugins/unescaped-markup/prism-unescaped-markup.min.js"></script>
</body>