从哪里获取android中的动画示例代码

发布于 2024-11-09 04:17:54 字数 43 浏览 0 评论 0原文

我想获得一些有关页面滑动的动画的示例代码。

谢谢 苏尼尔

I want to get some sample codes on animation where the page will slide.

Thanks
Sunil

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花落人断肠 2024-11-16 04:17:54

在 res 目录中创建一个文件夹 anim 并将其存储

在程序中的 Slide_top_to_bottom.xml 文件中,传递将要设置动画的视图
您可以在 Android 安装目录中获取示例 xml,例如。 C:\Program Files\Android\android-sdk-windows\samples\android-10\ApiDemos\res\anim
上面的目录包含许多您可以使用的示例动画 xml 文件
大多数动画有3种类型,滑动效果-transalte,淡入淡出效果-alpha,inreaze或减小页面大小-scale

pageTransition(Context context, View view){
Animation mAnim = AnimationUtils.loadAnimation(context, R.anim.slide_top_to_bottom);
        mAnim.setRepeatMode(Animation.ABSOLUTE);
        view.startAnimation(mAnim);
        }

谢谢
迪帕克

create a folder anim in res directory and store there slide_top_to_bottom.xml file

In your program pass the view to which animation will be set
you can get sample xml in installation directory of Android eg. C:\Program Files\Android\android-sdk-windows\samples\android-10\ApiDemos\res\anim
The above directory contains lots of sample animation xml file which you can use
Mostly animation is 3 types, sliding effect- transalte, fading effect - alpha, inreaze or decrease size of page- scale

pageTransition(Context context, View view){
Animation mAnim = AnimationUtils.loadAnimation(context, R.anim.slide_top_to_bottom);
        mAnim.setRepeatMode(Animation.ABSOLUTE);
        view.startAnimation(mAnim);
        }

Thanks
Deepak

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文