I want to change animations for popup menu.
I have two xml file related to animation action information in res/anim
.
And I tried to do it but it did not work. Do I use PopupWindow?
styles.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
...
<item name="android:dropDownListViewStyle">@style/PopupMenuTheme</item>
</style>
<style name="PopupMenuTheme" parent="Widget.AppCompat.PopupMenu">
...
<item name="android:windowAnimationStyle">@style/AnimationTheme</item>
</style>
<style name="AnimationTheme">
<item name="android:windowEnterAnimation">@anim/translate_down</item>
<item name="android:windowExitAnimation">@anim/translate_up</item>
</style>