在android中缩小启动屏幕中的动画?

发布于 2024-11-24 04:27:27 字数 79 浏览 0 评论 0原文

我有一个要求,我必须在启动屏幕中提供缩小效果。请提出一些建议。我有一个想法,我们可以将其动画保存在 res/anim 文件夹中并在活动中使用它。

I have a requirement in which i have to give zoom out effect in splash screen. Please Suggest something. I have an idea that we can keep its animation in res/anim folder and use it in activity.

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

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

发布评论

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

评论(2

慢慢从新开始 2024-12-01 04:27:29

在 Activity Java 文件中使用此代码:

FrameLayout mainFrame = ((FrameLayout) findViewById(R.id.FrameLayout01));
        Animation hyperspaceJumpAnimation = AnimationUtils.loadAnimation(this,
                R.anim.hyperspace_jump);
        mainFrame.startAnimation(hyperspaceJumpAnimation);

将此代码放在 res > 下动画> hyperspace_jump.xml

<?xml version="1.0" encoding="UTF-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
   <scale
          android:interpolator="@android:anim/accelerate_decelerate_interpolator"
          android:fromXScale="0.0"
          android:toXScale="1.4"
          android:fromYScale="0.0"
          android:toYScale="1.4"
          android:pivotX="50%"
          android:pivotY="50%"
          android:fillAfter="false"
          android:duration="700" />
   <set android:interpolator="@android:anim/decelerate_interpolator">
      <scale
             android:fromXScale="1.4" 
             android:toXScale="0.8"
             android:fromYScale="1.4"
             android:toYScale="0.8" 
             android:pivotX="50%" 
             android:pivotY="50%" 
             android:startOffset="700"
             android:duration="400" 
             android:fillBefore="false" />
      <!-- <rotate 
             android:fromDegrees="0" 
             android:toDegrees="360"
             android:toYScale="0.0" 
             android:pivotX="50%" 
             android:pivotY="50%"
             android:startOffset="700"
             android:duration="400" />
          -->
   </set>
</set>

Use this in Activity Java File :

FrameLayout mainFrame = ((FrameLayout) findViewById(R.id.FrameLayout01));
        Animation hyperspaceJumpAnimation = AnimationUtils.loadAnimation(this,
                R.anim.hyperspace_jump);
        mainFrame.startAnimation(hyperspaceJumpAnimation);

Put this code under res > anim > hyperspace_jump.xml

<?xml version="1.0" encoding="UTF-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
   <scale
          android:interpolator="@android:anim/accelerate_decelerate_interpolator"
          android:fromXScale="0.0"
          android:toXScale="1.4"
          android:fromYScale="0.0"
          android:toYScale="1.4"
          android:pivotX="50%"
          android:pivotY="50%"
          android:fillAfter="false"
          android:duration="700" />
   <set android:interpolator="@android:anim/decelerate_interpolator">
      <scale
             android:fromXScale="1.4" 
             android:toXScale="0.8"
             android:fromYScale="1.4"
             android:toYScale="0.8" 
             android:pivotX="50%" 
             android:pivotY="50%" 
             android:startOffset="700"
             android:duration="400" 
             android:fillBefore="false" />
      <!-- <rotate 
             android:fromDegrees="0" 
             android:toDegrees="360"
             android:toYScale="0.0" 
             android:pivotX="50%" 
             android:pivotY="50%"
             android:startOffset="700"
             android:duration="400" />
          -->
   </set>
</set>
梦冥 2024-12-01 04:27:29

您可以使用视图动画来获得缩放效果。

<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false">
   <alpha android:fromAlpha="0.0"
        android:toAlpha="1.0" android:duration="900">        
   </alpha>
    <set
        android:interpolator="@android:anim/accelerate_interpolator"
        android:startOffset="700">
     <scale
            android:fromXScale="0"
            android:toXScale="1"
            android:fromYScale="0"
            android:toYScale="1.0"
            android:pivotX="50%"
            android:pivotY="50%"
            android:duration="1000" 
           android:fillBefore="false"   
      />
   </set>
</set>

在资源下的动画文件夹中创建一个 XML 文件。在 java 文件中,您必须为相应图像设置动画。

Animation hyperspaceJump = AnimationUtils.loadAnimation(this, R.anim.hyperspace_jump);
image.startAnimation(hyperspaceJump);

这里我的 xml 文件名为 hyperspace_jump。有关更多参考,请点击此处

yu can use the view animation in order to get the zoom effect.

<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false">
   <alpha android:fromAlpha="0.0"
        android:toAlpha="1.0" android:duration="900">        
   </alpha>
    <set
        android:interpolator="@android:anim/accelerate_interpolator"
        android:startOffset="700">
     <scale
            android:fromXScale="0"
            android:toXScale="1"
            android:fromYScale="0"
            android:toYScale="1.0"
            android:pivotX="50%"
            android:pivotY="50%"
            android:duration="1000" 
           android:fillBefore="false"   
      />
   </set>
</set>

create an XML file in the animation folder under resource.And in the java file you must set the animation for the respective image.

Animation hyperspaceJump = AnimationUtils.loadAnimation(this, R.anim.hyperspace_jump);
image.startAnimation(hyperspaceJump);

Here my xml file name is hyperspace_jump.for more reference click here.

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