I'm trying to setEnterTransition
with explode.xml file.
i tried this
<?xml version="1.0" encoding="utf-8"?>
<transitionManager xmlns:android="http://schemas.android.com/apk/res/android">
<transition android:transition="@transition/explode" />
</transitionManager>
and this
<?xml version="1.0" encoding="utf-8"?>
<transitionSet xmlns:android="http://schemas.android.com/apk/res/android">
<explode
android:duration="500"
android:interpolator="@android:interpolator/bounce" />
</transitionSet>
but explode animation did not work, any ideas?
xml
in your code ? – GratinWindowAnimationTransition
style in yourstyle.xml
(withandroid:windowEnterAnimation
andandroid:windowExitAnimation
). Then use this style aswindowAnimationStyle
. – Gratin