android - Option Menu Animation -
how can give slide down animation :
<set xmlns:android="http://schemas.android.com/apk/res/android" > <translate android:duration="1000" android:fromydelta="0" android:toydelta="100%" /> </set>
for " option menu " opening .like animation :
just add line style.xml please add on application main style define in manifest
<style name="apptheme" parent="theme.appcompat.light.noactionbar"> <item name="android:popupanimationstyle">@style/animation</item> </style>
style.xml :
<style name="animation"> <item name="android:windowenteranimation">@anim/your_specific_animation</item> <item name="android:windowexitanimation">@anim/your_specific_animation</item> </style>
Comments
Post a Comment