Android 动画开始新的 Activity 或关闭 Activity

发布于 2024-12-05 22:36:55 字数 137 浏览 1 评论 0原文

Android 中是否有各种可用的视图动画的教程或代码示例。基本上我想做的是,如果开始一个新的活动,我试图让该活动开始,比如放大直到它填满屏幕,或者在我要完成活动时淡出。我有办法做到这一点吗?

任何帮助将不胜感激。

谢谢 -昌杜

Is there a tutorial or a code example of various kinds of View Animations available in Android. Basically what I am trying to do is say if start a new Activity, I am trying to get that activity start out like zoom in till it fills the screen or Fade out when I am going to finish the activity. Is there a way i can do this ?

Any help will be greatly appreciated.

Thanks
-Chandu

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

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

发布评论

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

评论(1

蓝戈者 2024-12-12 22:36:55

因此,您需要从活动中使用 OverridePendingTransition: http://developer.android.com /reference/android/app/Activity.html

一些淡入/淡出的示例可以在这里找到:http://www.anddev.org/novice -tutorials-f8/splash-fade-activity-animations-overridependingtransition-t9464.html

<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
        android:interpolator="@android:anim/decelerate_interpolator"
        android:zAdjustment="top"
        android:fromAlpha="1.0"
        android:toAlpha="0.0"
        android:duration="1000" />

缩放:

<scale
    android:pivotX="50%"
    android:pivotY="50%"
android:fromXScale=".1"
android:fromYScale=".1"
android:toXScale="1.0"
android:toYScale="1.0"
android:duration="2000" />

So you need to use OverridePendingTransition from the activity: http://developer.android.com/reference/android/app/Activity.html

Some examples with Fade in/out can be found here: http://www.anddev.org/novice-tutorials-f8/splash-fade-activity-animations-overridependingtransition-t9464.html

<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
        android:interpolator="@android:anim/decelerate_interpolator"
        android:zAdjustment="top"
        android:fromAlpha="1.0"
        android:toAlpha="0.0"
        android:duration="1000" />

Zoom:

<scale
    android:pivotX="50%"
    android:pivotY="50%"
android:fromXScale=".1"
android:fromYScale=".1"
android:toXScale="1.0"
android:toYScale="1.0"
android:duration="2000" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文