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 :

enter image description here

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> 

enter image description here


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -