Android ActionSheet动画效果实现

今天需要在项目中使用到类似iOS ActionSheet的动画效果,在查阅了一些资料后,顺利实现了,在这里把方法分享给大家。

1.首先在res/anim文件夹下创建slide_up.xml和slide_down.xml(文件名随意),代码如下:

slide_up.xml

<set xmlns:android="http://schemas.android.com/apk/res/android"
     android:interpolator="@android:anim/accelerate_decelerate_interpolator" >

<translate android:duration="500"
           android:fromYDelta="100%p"
           android:toYDelta="0%p" />

</set>

slide_down.xml

<set xmlns:android="http://schemas.android.com/apk/res/android"
     android:interpolator="@android:anim/accelerate_decelerate_interpolator">

	<translate android:duration="200"
	           android:fromYDelta="0%p"
	           android:toYDelta="100%p" />

</set>

2.然后在res/values文件夹下的styleds文件(没有的话就新建一个),增加以下代码:

<resources>
	<style name="DialogAnimation">
		<item name="android:windowEnterAnimation">@anim/slide_up</item>
		<item name="android:windowExitAnimation">@anim/slide_down</item>
	</style>
</resources>

3.最后,在dialog弹出之前,使用刚刚实现的动画效果:

dialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation;

如果大家觉得对自己有帮助的话,还希望能帮顶一下,谢谢:)
个人博客: http://blog.csdn.net/zhaoxy2850
本文地址: http://blog.csdn.net/zhaoxy_thu/article/details/17733389
转载请注明出处,谢谢!

你可能感兴趣的:(android,动画,实现,效果,ActionSheet)