-
-
Notifications
You must be signed in to change notification settings - Fork 303
/
Copy pathIntroActivity.java
1467 lines (1254 loc) · 52.6 KB
/
IntroActivity.java
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
/*
* MIT License
*
* Copyright (c) 2017 Jan Heinrich Reimer
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.heinrichreimersoftware.materialintro.app;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.ArgbEvaluator;
import android.animation.ValueAnimator;
import android.annotation.SuppressLint;
import android.annotation.TargetApi;
import android.app.ActivityManager;
import android.content.Intent;
import android.content.res.ColorStateList;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.graphics.Bitmap;
import android.graphics.Color;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.LayerDrawable;
import android.os.Build;
import android.os.Bundle;
import android.os.Handler;
import androidx.annotation.ColorInt;
import androidx.annotation.ColorRes;
import androidx.annotation.IntDef;
import androidx.annotation.IntRange;
import androidx.annotation.InterpolatorRes;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.StringRes;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentManager;
import androidx.core.content.ContextCompat;
import androidx.core.graphics.ColorUtils;
import androidx.core.graphics.drawable.DrawableCompat;
import androidx.core.util.Pair;
import androidx.core.view.ViewCompat;
import androidx.viewpager.widget.ViewPager;
import androidx.appcompat.app.AppCompatActivity;
import android.text.TextUtils;
import android.util.TypedValue;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import android.view.animation.AccelerateDecelerateInterpolator;
import android.view.animation.AnimationUtils;
import android.view.animation.Interpolator;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.TextSwitcher;
import com.heinrichreimersoftware.materialintro.R;
import com.heinrichreimersoftware.materialintro.slide.ButtonCtaSlide;
import com.heinrichreimersoftware.materialintro.slide.Slide;
import com.heinrichreimersoftware.materialintro.slide.SlideAdapter;
import com.heinrichreimersoftware.materialintro.util.AnimUtils;
import com.heinrichreimersoftware.materialintro.util.CheatSheet;
import com.heinrichreimersoftware.materialintro.view.FadeableViewPager;
import com.heinrichreimersoftware.materialintro.view.InkPageIndicator;
import com.heinrichreimersoftware.materialintro.view.parallax.Parallaxable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
@SuppressLint("Registered")
public class IntroActivity extends AppCompatActivity implements IntroNavigation {
private static final String KEY_CURRENT_ITEM =
"com.heinrichreimersoftware.materialintro.app.IntroActivity.KEY_CURRENT_ITEM";
private static final String KEY_FULLSCREEN =
"com.heinrichreimersoftware.materialintro.app.IntroActivity.KEY_FULLSCREEN";
private static final String KEY_BUTTON_CTA_VISIBLE =
"com.heinrichreimersoftware.materialintro.app.IntroActivity.KEY_BUTTON_CTA_VISIBLE";
private boolean activityCreated = false;
private ConstraintLayout miFrame;
private FadeableViewPager miPager;
private InkPageIndicator miPagerIndicator;
private TextSwitcher miButtonCta;
private ImageButton miButtonBack;
private ImageButton miButtonNext;
//Settings constants
@IntDef({BUTTON_NEXT_FUNCTION_NEXT, BUTTON_NEXT_FUNCTION_NEXT_FINISH})
@Retention(RetentionPolicy.SOURCE)
@interface ButtonNextFunction {
}
public static final int BUTTON_NEXT_FUNCTION_NEXT = 1;
public static final int BUTTON_NEXT_FUNCTION_NEXT_FINISH = 2;
@IntDef({BUTTON_BACK_FUNCTION_BACK, BUTTON_BACK_FUNCTION_SKIP})
@Retention(RetentionPolicy.SOURCE)
@interface ButtonBackFunction {
}
public static final int BUTTON_BACK_FUNCTION_BACK = 1;
public static final int BUTTON_BACK_FUNCTION_SKIP = 2;
@IntDef({BUTTON_CTA_TINT_MODE_BACKGROUND, BUTTON_CTA_TINT_MODE_TEXT})
@Retention(RetentionPolicy.SOURCE)
@interface ButtonCtaTintMode {
}
public static final int BUTTON_CTA_TINT_MODE_BACKGROUND = 1;
public static final int BUTTON_CTA_TINT_MODE_TEXT = 2;
public static final int DEFAULT_AUTOPLAY_DELAY = 1500;
public static final int INFINITE = -1;
public static final int DEFAULT_AUTOPLAY_REPEAT_COUNT = INFINITE;
public static final Interpolator ACCELERATE_DECELERATE_INTERPOLATOR = new AccelerateDecelerateInterpolator();
private final ArgbEvaluator evaluator = new ArgbEvaluator();
private SlideAdapter adapter;
private IntroPageChangeListener listener = new IntroPageChangeListener();
private int position = 0;
private float positionOffset = 0;
//Settings
private boolean fullscreen = false;
private boolean buttonCtaVisible = false;
@ButtonNextFunction
private int buttonNextFunction = BUTTON_NEXT_FUNCTION_NEXT_FINISH;
@ButtonBackFunction
private int buttonBackFunction = BUTTON_BACK_FUNCTION_SKIP;
@ButtonCtaTintMode
private int buttonCtaTintMode = BUTTON_CTA_TINT_MODE_BACKGROUND;
private NavigationPolicy navigationPolicy = null;
private List<OnNavigationBlockedListener> navigationBlockedListeners = new ArrayList<>();
private CharSequence buttonCtaLabel = null;
@StringRes
private int buttonCtaLabelRes = 0;
private View.OnClickListener buttonCtaClickListener = null;
private Handler autoplayHandler = new Handler();
private Runnable autoplayCallback = null;
private int autoplayCounter;
private long autoplayDelay;
private Interpolator pageScrollInterpolator;
private long pageScrollDuration;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
pageScrollInterpolator = AnimationUtils.loadInterpolator(this, android.R.interpolator.accelerate_decelerate);
pageScrollDuration = getResources().getInteger(android.R.integer.config_shortAnimTime);
if (savedInstanceState != null) {
if (savedInstanceState.containsKey(KEY_CURRENT_ITEM)) {
position = savedInstanceState.getInt(KEY_CURRENT_ITEM, position);
}
if (savedInstanceState.containsKey(KEY_FULLSCREEN)) {
fullscreen = savedInstanceState.getBoolean(KEY_FULLSCREEN, fullscreen);
}
if (savedInstanceState.containsKey(KEY_BUTTON_CTA_VISIBLE)) {
buttonCtaVisible = savedInstanceState.getBoolean(KEY_BUTTON_CTA_VISIBLE, buttonCtaVisible);
}
}
if (fullscreen) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
setSystemUiFlags(View.SYSTEM_UI_FLAG_LAYOUT_STABLE |
View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN, true);
updateFullscreen();
} else {
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
}
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
setContentView(R.layout.mi_activity_intro);
initViews();
}
@Override
protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
activityCreated = true;
updateTaskDescription();
updateButtonNextDrawable();
updateButtonBackDrawable();
updateScrollPositions();
miFrame.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
@Override
public void onLayoutChange(View v, int left, int top, int right, int bottom,
int oldLeft, int oldTop, int oldRight, int oldBottom) {
updateScrollPositions();
v.removeOnLayoutChangeListener(this);
}
});
}
@Override
protected void onResume() {
super.onResume();
updateFullscreen();
}
@Override
public void onUserInteraction() {
if (isAutoplaying())
cancelAutoplay();
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,
@NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
updateButtonCta();
}
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putInt(KEY_CURRENT_ITEM, miPager.getCurrentItem());
outState.putBoolean(KEY_FULLSCREEN, fullscreen);
outState.putBoolean(KEY_BUTTON_CTA_VISIBLE, buttonCtaVisible);
}
@Override
public void onBackPressed() {
if (position > 0) {
previousSlide();
return;
}
Intent returnIntent = onSendActivityResult(RESULT_CANCELED);
if (returnIntent != null)
setResult(RESULT_CANCELED, returnIntent);
else
setResult(RESULT_CANCELED);
super.onBackPressed();
}
public Intent onSendActivityResult(int result) {
return null;
}
@Override
protected void onDestroy() {
if (isAutoplaying()) {
cancelAutoplay();
}
activityCreated = false;
super.onDestroy();
}
private void setSystemUiFlags(int flags, boolean value) {
int systemUiVisibility = getWindow().getDecorView().getSystemUiVisibility();
if (value) {
systemUiVisibility |= flags;
} else {
systemUiVisibility &= ~flags;
}
getWindow().getDecorView().setSystemUiVisibility(systemUiVisibility);
}
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
private void setFullscreenFlags(boolean fullscreen) {
int fullscreenFlags = View.SYSTEM_UI_FLAG_FULLSCREEN;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
fullscreenFlags |= View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
}
setSystemUiFlags(fullscreenFlags, fullscreen);
}
private void initViews() {
// bind views
miFrame = findViewById(R.id.mi_frame);
miPager = findViewById(R.id.mi_pager);
miPagerIndicator = findViewById(R.id.mi_pager_indicator);
miButtonCta = findViewById(R.id.mi_button_cta);
miButtonBack = findViewById(R.id.mi_button_back);
miButtonNext = findViewById(R.id.mi_button_next);
if (miButtonCta != null) {
miButtonCta.setInAnimation(this, R.anim.mi_fade_in);
miButtonCta.setOutAnimation(this, R.anim.mi_fade_out);
}
FragmentManager fragmentManager = getSupportFragmentManager();
adapter = new SlideAdapter(fragmentManager);
miPager.setAdapter(adapter);
miPager.addOnPageChangeListener(listener);
miPager.setCurrentItem(position, false);
miPagerIndicator.setViewPager(miPager);
resetButtonNextOnClickListener();
resetButtonBackOnClickListener();
CheatSheet.setup(miButtonNext);
CheatSheet.setup(miButtonBack);
}
public void setButtonNextOnClickListener(View.OnClickListener onClickListener) {
miButtonNext.setOnClickListener(onClickListener);
}
public void setButtonBackOnClickListener(View.OnClickListener onClickListener) {
miButtonBack.setOnClickListener(onClickListener);
}
public void resetButtonNextOnClickListener() {
miButtonNext.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
nextSlide();
}
});
}
public void resetButtonBackOnClickListener() {
miButtonBack.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
performButtonBackPress();
}
});
}
private void smoothScrollPagerTo(final int position) {
if (miPager.isFakeDragging())
return;
ValueAnimator animator = ValueAnimator.ofFloat(miPager.getCurrentItem(), position);
animator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (miPager.isFakeDragging())
miPager.endFakeDrag();
miPager.setCurrentItem(position);
}
@Override
public void onAnimationCancel(Animator animation) {
if (miPager.isFakeDragging())
miPager.endFakeDrag();
}
});
animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
float position = (Float) animation.getAnimatedValue();
fakeDragToPosition(position);
}
private boolean fakeDragToPosition(float position) {
// The following mimics the underlying calculations in ViewPager
float scrollX = miPager.getScrollX();
int pagerWidth = miPager.getWidth();
int currentPosition = miPager.getCurrentItem();
if (position > currentPosition && Math.floor(position) != currentPosition && position % 1 != 0) {
miPager.setCurrentItem((int) Math.floor(position), false);
} else if (position < currentPosition && Math.ceil(position) != currentPosition && position % 1 != 0) {
miPager.setCurrentItem((int) Math.ceil(position), false);
}
if (!miPager.isFakeDragging() && !miPager.beginFakeDrag())
return false;
miPager.fakeDragBy(scrollX - pagerWidth * position);
return true;
}
});
int distance = Math.abs(position - miPager.getCurrentItem());
animator.setInterpolator(pageScrollInterpolator);
animator.setDuration(calculateScrollDuration(distance));
animator.start();
}
private long calculateScrollDuration(int distance) {
return Math.round(pageScrollDuration * (distance + Math.sqrt(distance)) / 2);
}
@Override
public boolean goToSlide(int position) {
int lastPosition = miPager.getCurrentItem();
if (lastPosition >= adapter.getCount()) {
finishIfNeeded();
}
int newPosition = lastPosition;
position = Math.max(0, Math.min(position, getCount()));
if (position > lastPosition) {
// Go forward
while (newPosition < position && canGoForward(newPosition, true)) {
newPosition++;
}
} else if (position < lastPosition) {
// Go backward
while (newPosition > position && canGoBackward(newPosition, true)) {
newPosition--;
}
} else {
// Noting to do here
return true;
}
boolean blocked = false;
if (newPosition != position) {
// Could not go the complete way to the given position.
blocked = true;
if (position > lastPosition) {
AnimUtils.applyShakeAnimation(this, miButtonNext);
} else if (position < lastPosition) {
AnimUtils.applyShakeAnimation(this, miButtonBack);
}
}
// Scroll to new position
smoothScrollPagerTo(newPosition);
return !blocked;
}
@Override
public boolean nextSlide() {
int currentItem = miPager.getCurrentItem();
return goToSlide(currentItem + 1);
}
private int nextSlideAuto() {
int lastPosition = miPager.getCurrentItem();
int count = getCount();
if (count == 1) {
return 0;
} else if (miPager.getCurrentItem() >= count - 1) {
while (lastPosition >= 0 && canGoBackward(lastPosition, true)) {
lastPosition--;
}
if (autoplayCounter > 0)
autoplayCounter--;
} else if (canGoForward(lastPosition, true)) {
lastPosition++;
}
int distance = Math.abs(lastPosition - miPager.getCurrentItem());
if (lastPosition == miPager.getCurrentItem())
return 0;
smoothScrollPagerTo(lastPosition);
if (autoplayCounter == 0)
return 0;
return distance;
}
@Override
public boolean previousSlide() {
int currentItem = miPager.getCurrentItem();
return goToSlide(currentItem - 1);
}
@Override
public boolean goToLastSlide() {
return goToSlide(getCount() - 1);
}
@Override
public boolean goToFirstSlide() {
return goToSlide(0);
}
private void performButtonBackPress() {
if (buttonBackFunction == BUTTON_BACK_FUNCTION_SKIP) {
goToSlide(getCount());
} else if (buttonBackFunction == BUTTON_BACK_FUNCTION_BACK) {
previousSlide();
}
}
private boolean canGoForward(int position, boolean notifyListeners) {
if (position >= getCount()) {
return false;
}
if (position < 0) {
return true;
}
if (buttonNextFunction == BUTTON_NEXT_FUNCTION_NEXT && position >= getCount() - 1)
//Block finishing when button "next" function is not "finish".
return false;
boolean canGoForward = (navigationPolicy == null || navigationPolicy.canGoForward(position)) &&
getSlide(position).canGoForward();
if (!canGoForward && notifyListeners) {
for (OnNavigationBlockedListener listener : navigationBlockedListeners) {
listener.onNavigationBlocked(position, OnNavigationBlockedListener.DIRECTION_FORWARD);
}
}
return canGoForward;
}
private boolean canGoBackward(int position, boolean notifyListeners) {
if (position <= 0) {
return false;
}
if (position >= getCount()) {
return true;
}
boolean canGoBackward = (navigationPolicy == null || navigationPolicy.canGoBackward(position)) &&
getSlide(position).canGoBackward();
if (!canGoBackward && notifyListeners) {
for (OnNavigationBlockedListener listener : navigationBlockedListeners) {
listener.onNavigationBlocked(position, OnNavigationBlockedListener.DIRECTION_BACKWARD);
}
}
return canGoBackward;
}
private boolean finishIfNeeded() {
if (positionOffset == 0 && position == adapter.getCount()) {
Intent returnIntent = onSendActivityResult(RESULT_OK);
if (returnIntent != null)
setResult(RESULT_OK, returnIntent);
else
setResult(RESULT_OK);
onIntroFinish();
finish();
overridePendingTransition(0, 0);
return true;
}
return false;
}
public void onIntroFinish() {
}
@Nullable
private Pair<CharSequence, ? extends View.OnClickListener> getButtonCta(int position) {
if (position < getCount() && getSlide(position) instanceof ButtonCtaSlide) {
ButtonCtaSlide slide = (ButtonCtaSlide) getSlide(position);
if (slide.getButtonCtaClickListener() != null &&
(slide.getButtonCtaLabel() != null || slide.getButtonCtaLabelRes() != 0)) {
if (slide.getButtonCtaLabel() != null) {
return Pair.create(slide.getButtonCtaLabel(),
slide.getButtonCtaClickListener());
} else {
return Pair.create((CharSequence) getString(slide.getButtonCtaLabelRes()),
slide.getButtonCtaClickListener());
}
}
}
if (buttonCtaVisible) {
if (buttonCtaLabelRes != 0) {
return Pair.create((CharSequence) getString(buttonCtaLabelRes),
new ButtonCtaClickListener());
}
if (!TextUtils.isEmpty(buttonCtaLabel)) {
return Pair.create(buttonCtaLabel, new ButtonCtaClickListener());
} else {
return Pair.create((CharSequence) getString(R.string.mi_label_button_cta),
new ButtonCtaClickListener());
}
}
return null;
}
private void updateTaskDescription() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
String title = getTitle().toString();
Drawable iconDrawable = getApplicationInfo().loadIcon(getPackageManager());
Bitmap icon = iconDrawable instanceof BitmapDrawable ? ((BitmapDrawable) iconDrawable).getBitmap() : null;
int colorPrimary;
if (position < getCount()) {
try {
colorPrimary = ContextCompat.getColor(IntroActivity.this, getBackgroundDark(position));
} catch (Resources.NotFoundException e) {
colorPrimary = ContextCompat.getColor(IntroActivity.this, getBackground(position));
}
} else {
colorPrimary = Color.GRAY;
}
colorPrimary = ColorUtils.setAlphaComponent(colorPrimary, 0xFF);
setTaskDescription(new ActivityManager.TaskDescription(title, icon, colorPrimary));
}
}
private void updateBackground() {
@ColorInt
int background;
@ColorInt
int backgroundNext;
@ColorInt
int backgroundDark;
@ColorInt
int backgroundDarkNext;
if (position == getCount()) {
background = Color.TRANSPARENT;
backgroundNext = Color.TRANSPARENT;
backgroundDark = Color.TRANSPARENT;
backgroundDarkNext = Color.TRANSPARENT;
} else {
background = ContextCompat.getColor(IntroActivity.this,
getBackground(position));
backgroundNext = ContextCompat.getColor(IntroActivity.this,
getBackground(Math.min(position + 1, getCount() - 1)));
background = ColorUtils.setAlphaComponent(background, 0xFF);
backgroundNext = ColorUtils.setAlphaComponent(backgroundNext, 0xFF);
try {
backgroundDark = ContextCompat.getColor(IntroActivity.this,
getBackgroundDark(position));
} catch (Resources.NotFoundException e) {
backgroundDark = ContextCompat.getColor(IntroActivity.this,
R.color.mi_status_bar_background);
}
try {
backgroundDarkNext = ContextCompat.getColor(IntroActivity.this,
getBackgroundDark(Math.min(position + 1, getCount() - 1)));
} catch (Resources.NotFoundException e) {
backgroundDarkNext = ContextCompat.getColor(IntroActivity.this,
R.color.mi_status_bar_background);
}
}
if (position + positionOffset >= adapter.getCount() - 1) {
backgroundNext = ColorUtils.setAlphaComponent(background, 0x00);
backgroundDarkNext = ColorUtils.setAlphaComponent(backgroundDark, 0x00);
}
background = (Integer) evaluator.evaluate(positionOffset, background, backgroundNext);
backgroundDark = (Integer) evaluator.evaluate(positionOffset, backgroundDark, backgroundDarkNext);
miFrame.setBackgroundColor(background);
float[] backgroundDarkHsv = new float[3];
Color.colorToHSV(backgroundDark, backgroundDarkHsv);
//Slightly darken the background color a bit for more contrast
backgroundDarkHsv[2] *= 0.95;
int backgroundDarker = Color.HSVToColor(backgroundDarkHsv);
miPagerIndicator.setPageIndicatorColor(backgroundDarker);
ViewCompat.setBackgroundTintList(miButtonNext, ColorStateList.valueOf(backgroundDarker));
ViewCompat.setBackgroundTintList(miButtonBack, ColorStateList.valueOf(backgroundDarker));
@ColorInt
int backgroundButtonCta = buttonCtaTintMode == BUTTON_CTA_TINT_MODE_TEXT ?
ContextCompat.getColor(this, android.R.color.white) : backgroundDarker;
ViewCompat.setBackgroundTintList(miButtonCta.getChildAt(0), ColorStateList.valueOf(backgroundButtonCta));
ViewCompat.setBackgroundTintList(miButtonCta.getChildAt(1), ColorStateList.valueOf(backgroundButtonCta));
int iconColor;
if (ColorUtils.calculateLuminance(backgroundDark) > 0.4) {
//Light background
iconColor = ContextCompat.getColor(this, R.color.mi_icon_color_light);
} else {
//Dark background
iconColor = ContextCompat.getColor(this, R.color.mi_icon_color_dark);
}
miPagerIndicator.setCurrentPageIndicatorColor(iconColor);
DrawableCompat.setTint(miButtonNext.getDrawable(), iconColor);
DrawableCompat.setTint(miButtonBack.getDrawable(), iconColor);
@ColorInt
int textColorButtonCta = buttonCtaTintMode == BUTTON_CTA_TINT_MODE_TEXT ?
backgroundDarker : iconColor;
((Button) miButtonCta.getChildAt(0)).setTextColor(textColorButtonCta);
((Button) miButtonCta.getChildAt(1)).setTextColor(textColorButtonCta);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getWindow().setStatusBarColor(backgroundDark);
if (position == adapter.getCount()) {
getWindow().setNavigationBarColor(Color.TRANSPARENT);
} else if (position + positionOffset >= adapter.getCount() - 1) {
TypedValue typedValue = new TypedValue();
TypedArray a = obtainStyledAttributes(typedValue.data, new int[]{android.R.attr.navigationBarColor});
int defaultNavigationBarColor = a.getColor(0, Color.BLACK);
a.recycle();
int navigationBarColor = (Integer) evaluator.evaluate(positionOffset, defaultNavigationBarColor, Color.TRANSPARENT);
getWindow().setNavigationBarColor(navigationBarColor);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
int systemUiVisibility = getWindow().getDecorView().getSystemUiVisibility();
int flagLightStatusBar = View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
if (ColorUtils.calculateLuminance(backgroundDark) > 0.4) {
//Light background
systemUiVisibility |= flagLightStatusBar;
} else {
//Dark background
systemUiVisibility &= ~flagLightStatusBar;
}
getWindow().getDecorView().setSystemUiVisibility(systemUiVisibility);
}
}
}
private void updateButtonCta() {
float realPosition = position + positionOffset;
float yOffset = getResources().getDimensionPixelSize(R.dimen.mi_y_offset);
if (realPosition < adapter.getCount()) {
//Before fade
Pair<CharSequence, ? extends View.OnClickListener> button = getButtonCta(position);
Pair<CharSequence, ? extends View.OnClickListener> buttonNext = positionOffset == 0 ? null : getButtonCta(position + 1);
if (button == null) {
if (buttonNext == null) {
//Hide button
miButtonCta.setVisibility(View.GONE);
} else {
miButtonCta.setVisibility(View.VISIBLE);
//Fade in
if (!((Button) miButtonCta.getCurrentView()).getText().equals(buttonNext.first))
miButtonCta.setText(buttonNext.first);
miButtonCta.getChildAt(0).setOnClickListener(buttonNext.second);
miButtonCta.getChildAt(1).setOnClickListener(buttonNext.second);
miButtonCta.setAlpha(positionOffset);
miButtonCta.setScaleX(positionOffset);
miButtonCta.setScaleY(positionOffset);
ViewGroup.LayoutParams layoutParams = miButtonCta.getLayoutParams();
layoutParams.height = Math.round(getResources().getDimensionPixelSize(R.dimen.mi_button_cta_height) * ACCELERATE_DECELERATE_INTERPOLATOR.getInterpolation(positionOffset));
miButtonCta.setLayoutParams(layoutParams);
}
} else {
if (buttonNext == null) {
miButtonCta.setVisibility(View.VISIBLE);
//Fade out
if (!((Button) miButtonCta.getCurrentView()).getText().equals(button.first))
miButtonCta.setText(button.first);
miButtonCta.getChildAt(0).setOnClickListener(button.second);
miButtonCta.getChildAt(1).setOnClickListener(button.second);
miButtonCta.setAlpha(1 - positionOffset);
miButtonCta.setScaleX(1 - positionOffset);
miButtonCta.setScaleY(1 - positionOffset);
ViewGroup.LayoutParams layoutParams = miButtonCta.getLayoutParams();
layoutParams.height = Math.round(getResources().getDimensionPixelSize(R.dimen.mi_button_cta_height) * ACCELERATE_DECELERATE_INTERPOLATOR.getInterpolation(1 - positionOffset));
miButtonCta.setLayoutParams(layoutParams);
} else {
miButtonCta.setVisibility(View.VISIBLE);
ViewGroup.LayoutParams layoutParams = miButtonCta.getLayoutParams();
layoutParams.height = getResources().getDimensionPixelSize(R.dimen.mi_button_cta_height);
miButtonCta.setLayoutParams(layoutParams);
//Fade text
if (positionOffset >= 0.5f) {
if (!((Button) miButtonCta.getCurrentView()).getText().equals(buttonNext.first))
miButtonCta.setText(buttonNext.first);
miButtonCta.getChildAt(0).setOnClickListener(buttonNext.second);
miButtonCta.getChildAt(1).setOnClickListener(buttonNext.second);
} else {
if (!((Button) miButtonCta.getCurrentView()).getText().equals(button.first))
miButtonCta.setText(button.first);
miButtonCta.getChildAt(0).setOnClickListener(button.second);
miButtonCta.getChildAt(1).setOnClickListener(button.second);
}
}
}
}
if (realPosition < adapter.getCount() - 1) {
//Reset
miButtonCta.setTranslationY(0);
} else {
//Hide CTA button
miButtonCta.setTranslationY(positionOffset * yOffset);
}
}
private void updateButtonBackPosition() {
float realPosition = position + positionOffset;
float yOffset = getResources().getDimensionPixelSize(R.dimen.mi_y_offset);
if (realPosition < 1 && buttonBackFunction == BUTTON_BACK_FUNCTION_BACK) {
//Hide back button
miButtonBack.setTranslationY((1 - positionOffset) * yOffset);
} else if (realPosition < adapter.getCount() - 2) {
//Reset
miButtonBack.setTranslationY(0);
miButtonBack.setTranslationX(0);
} else if (realPosition < adapter.getCount() - 1) {
//Scroll away skip button
if (buttonBackFunction == BUTTON_BACK_FUNCTION_SKIP) {
boolean rtl = Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1 && getResources().getConfiguration().getLayoutDirection() ==
View.LAYOUT_DIRECTION_RTL;
miButtonBack.setTranslationX(positionOffset * (rtl ? 1 : -1) * miPager.getWidth());
} else {
miButtonBack.setTranslationX(0);
}
} else {
//Keep skip button scrolled away, hide next button
if (buttonBackFunction == BUTTON_BACK_FUNCTION_SKIP) {
boolean rtl = Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1 && getResources().getConfiguration().getLayoutDirection() ==
View.LAYOUT_DIRECTION_RTL;
miButtonBack.setTranslationX((rtl ? 1 : -1) * miPager.getWidth());
} else {
miButtonBack.setTranslationY(positionOffset * yOffset);
}
}
}
private void updateButtonNextPosition() {
float realPosition = position + positionOffset;
float yOffset = getResources().getDimensionPixelSize(R.dimen.mi_y_offset);
if (realPosition < adapter.getCount() - 2) {
//Reset
miButtonNext.setTranslationY(0);
} else if (realPosition < adapter.getCount() - 1) {
//Reset finish button, hide next icon
if (buttonNextFunction == BUTTON_NEXT_FUNCTION_NEXT_FINISH) {
miButtonNext.setTranslationY(0);
} else {
miButtonNext.setTranslationY(positionOffset * yOffset);
}
} else if (realPosition >= adapter.getCount() - 1) {
//Hide finish icon, keep next icon hidden
if (buttonNextFunction == BUTTON_NEXT_FUNCTION_NEXT_FINISH) {
miButtonNext.setTranslationY(positionOffset * yOffset);
} else {
miButtonNext.setTranslationY(-yOffset);
}
}
}
private void updatePagerIndicatorPosition() {
float realPosition = position + positionOffset;
float yOffset = getResources().getDimensionPixelSize(R.dimen.mi_y_offset);
if (realPosition < adapter.getCount() - 1) {
//Reset
miPagerIndicator.setTranslationY(0);
} else {
//Hide CTA button
miPagerIndicator.setTranslationY(positionOffset * yOffset);
}
}
private void updateParallax() {
if (position == getCount())
return;
Fragment fragment = getSlide(position).getFragment();
Fragment fragmentNext = position < getCount() - 1 ?
getSlide(position + 1).getFragment() : null;
if (fragment instanceof Parallaxable) {
((Parallaxable) fragment).setOffset(positionOffset);
}
if (fragmentNext instanceof Parallaxable) {
((Parallaxable) fragmentNext).setOffset(-1 + positionOffset);
}
}
private void updateFullscreen() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
if (adapter != null && position + positionOffset > adapter.getCount() - 1) {
setFullscreenFlags(false);
} else {
setFullscreenFlags(fullscreen);
}
}
}
private void updateBackgroundFade() {
float realPosition = position + positionOffset;
if (realPosition < adapter.getCount() - 1) {
//Reset
miFrame.setAlpha(1);
} else {
//Fade background
miFrame.setAlpha(1 - (positionOffset * 0.5f));
}
}
private void updateScrollPositions() {
updateBackground();
updateButtonCta();
updateButtonBackPosition();
updateButtonNextPosition();
updatePagerIndicatorPosition();
updateParallax();
updateFullscreen();
updateBackgroundFade();
}
private void updateButtonNextDrawable() {
float realPosition = position + positionOffset;
float offset = 0;
if (buttonNextFunction == BUTTON_NEXT_FUNCTION_NEXT_FINISH) {
if (realPosition >= adapter.getCount() - 1) {
offset = 1;
} else if (realPosition >= adapter.getCount() - 2) {
offset = positionOffset;
}
}
if (offset <= 0) {
miButtonNext.setImageResource(R.drawable.mi_ic_next);
miButtonNext.getDrawable().setAlpha(0xFF);
} else {
miButtonNext.setImageResource(R.drawable.mi_ic_next_finish);
if (miButtonNext.getDrawable() != null && miButtonNext.getDrawable() instanceof LayerDrawable) {
LayerDrawable drawable = (LayerDrawable) miButtonNext.getDrawable();
drawable.getDrawable(0).setAlpha((int) (0xFF * (1 - offset)));
drawable.getDrawable(1).setAlpha((int) (0xFF * offset));
} else {
miButtonNext.setImageResource(offset > 0 ? R.drawable.mi_ic_finish : R.drawable.mi_ic_next);
}
}
}
private void updateButtonBackDrawable() {
if (buttonBackFunction == BUTTON_BACK_FUNCTION_SKIP) {
miButtonBack.setImageResource(R.drawable.mi_ic_skip);
} else {
miButtonBack.setImageResource(R.drawable.mi_ic_previous);
}
}
@SuppressWarnings("unused")
public void autoplay(@IntRange(from = 1) long delay, @IntRange(from = -1) int repeatCount) {
autoplayCounter = repeatCount;
autoplayDelay = delay;
autoplayCallback = new Runnable() {
@Override
public void run() {
if (autoplayCounter == 0) {
cancelAutoplay();
return;
}
int distance = nextSlideAuto();
if (distance != 0)
autoplayHandler.postDelayed(autoplayCallback, autoplayDelay + calculateScrollDuration(distance));
}
};
autoplayHandler.postDelayed(autoplayCallback, autoplayDelay);
}
@SuppressWarnings("unused")
public void autoplay(@IntRange(from = 1) long delay) {
autoplay(delay, DEFAULT_AUTOPLAY_REPEAT_COUNT);
}
@SuppressWarnings("unused")
public void autoplay(@IntRange(from = -1) int repeatCount) {
autoplay(DEFAULT_AUTOPLAY_DELAY, repeatCount);
}
@SuppressWarnings("unused")