当按钮栏向上滑动时,android擦除动画

时间:2014-03-13 02:01:55

标签: android android-layout android-animation android-ui android-sliding

我正在尝试在Android应用程序中创建滑动动画,以在两个布局视图之间切换。

我试过this tutorial 但第二个屏幕并没有像我想要的那样。 我希望第二个布局像擦除动画一样,如下图所示

Wipe Animatioin

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

我能够通过使用剪切路径实现类似的转换。因为我不希望我的过渡在裁剪视图中排除使用Layouts,所以我在这个答案之后在布局级别实现了裁剪:Custom Layout that rounds the corners of its content

裁剪没有消除锯齿,你需要使用替代PorterDuff和基于XferMode的解决方案,但对于像你一样描述的线性擦除动画,布局中的裁剪将实现你想要的。基本上你是在进行线性显示,而我所接受的答案是一个圆形的剪辑。