在android中放大和缩小动画

时间:2013-07-28 02:31:35

标签: android android-layout android-intent android-animation

我有两个活动之间通常放大和缩小动画的代码,但我想要一些不同的东西。如果我点击第一个按钮然后放大将从第一个按钮的位置开始而不是从中心缩放,我的第一个活动上有五个按钮。请帮帮我。

编辑:缩放应从我单击的按钮开始。

3 个答案:

答案 0 :(得分:36)

您可以在运行命令后使用此方法开始新活动

startActivity(intent);
overridePendingTransition(animation_in_goes_here,animation_out_goes_here);

然后,您可以替换上面的动画,将animation_in_goes_here替换为您新开始的活动所需的动画资源,并将animation_out_goes_here替换为您要离开的活动的动画资源从。这将为您提供切换效果。

<强> zoom_in.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true">
    <scale
    android:duration="1000"
    android:fromXScale="1"
    android:fromYScale="1"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toXScale="3"
    android:toYScale="3"/>
 </set>

<强> zoom_out.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true">
    <scale
    android:duration="1000"
    android:fromXScale="1.0"
    android:fromYScale="1.0"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toXScale="0.5"
    android:toYScale="0.5"/>
</set>

希望这有助于回答你的问题。

答案 1 :(得分:3)

  

放大

<scale xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="1000"
    android:fromXScale="0"
    android:fromYScale="0"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toXScale="0.5"
    android:toYScale="0.5">

</scale>
  

缩小

<scale xmlns:android="http://schemas.android.com/apk/res/android"

    android:duration="1000"
    android:fromXScale="2.1"
    android:fromYScale="2.1"
    android:pivotX="50%"
    android:pivotY="50%"
    android:startOffset="3000"
    android:toXScale="0"
    android:toYScale="0">

</scale>

答案 2 :(得分:2)

我认为你必须

  • 设置&#34;&#34;和&#34; out&#34;动画
  • 创建文件夹res / anim
  • 将动画描述放入res / anim文件夹

    object.setInAnimation(AnimationUtils.loadAnimation(this,R.anim.zoom_enter)); object.setOutAnimation(AnimationUtils.loadAnimation(this,R.anim.zoom_exit));

您可以在Apache 2.0许可下使用Google提供的Android sdk示例动画

或者参考这个使用基于缩放的缩放比以前更容易

http://developer.android.com/training/animation/zoom.html