Moh*_*kar 9 animation android optionmenu
我如何给出这样的下滑动画:
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="1000"
android:fromYDelta="0"
android:toYDelta="100%" />
</set>
Run Code Online (Sandbox Code Playgroud)
对于"选项菜单"打开.像这个动画:
只需将此行添加到style.xml中,请在您在清单中定义的应用程序主样式上添加此行
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:popupAnimationStyle">@style/Animation</item>
</style>
Run Code Online (Sandbox Code Playgroud)
style.xml:
<style name="Animation">
<item name="android:windowEnterAnimation">@anim/your_specific_animation</item>
<item name="android:windowExitAnimation">@anim/your_specific_animation</item>
</style>
Run Code Online (Sandbox Code Playgroud)