You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- it will never use the native `ViewAnimationUtils.createCircularReveal` method
33
32
- currently there is an issue: views with elevation cannot be animated correctly on Lollipop and above.
34
33
- workaround A: set the LayerType of the target (or source) view to LayerType.SOFTWARE
@@ -40,6 +39,11 @@ Limitations
40
39
|**Reveal**| Software | Hardware |
41
40
|**Transform**| Software | Hardware |
42
41
42
+
**For radial reaction**
43
+
- only one reaction can be animated at the same time, in the same `RadialReactionParent`
44
+
- only one layout implemented yet: a LinearLayout.
45
+
- once an affectedView is reached, it will be removed from the list in the `RadialReactionParent`. If you want to animate multiple times, you have to add the views again. See demo for details.
46
+
43
47
Usage
44
48
------
45
49
@@ -51,7 +55,7 @@ For reveal and transform you have to wrap your animated views with a `CircularFr
51
55
android:layout_width="match_parent"
52
56
android:layout_height="match_parent">
53
57
54
-
<!-- Put any child views here if you want, it's stock frame layout-->
58
+
<!-- Put any child views here if you want, it's stock FrameLayout-->
0 commit comments