两项活动之间的动画不工作 [英] Animation between two Activities does not work

查看:120
本文介绍了两项活动之间的动画不工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图做两活动之间的幻灯片动画,然后一个人开始另时候,

I am trying to do a slide animation between two Activities when then one starts the other,

public void onClick(View view) {
    Intent intent = new Intent(TestAppActivity.this, SecondActivity.class);
    startActivityForResult(intent, 1);
    TestAppActivity.this.overridePendingTransition(R.anim.animation_enter,   R.anim.animation_leave);
    finish();
}

有没有动画的。该XML的是,输入:

There is no animation at all. The xmls are, for enter:

<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<translate
    android:fromXDelta="-100%"
    android:toXDelta="0%"
    android:fromYDelta="0%"
    android:toYDelta="0%"
    android:duration="3000" />

和休假:

<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<translate
    android:fromXDelta="0%"
    android:toXDelta="100%"
    android:fromYDelta="0%"
    android:toYDelta="0%"
    android:duration="3000" />

我可以看到什么是功错在这里。采用Android 2.3.3。谢谢你。

I can see what is gong wrong here. Using Android 2.3.3. Thanks.

推荐答案

要在那里的第一个活动去左边,第二活动从右侧进入做一个​​动画:

To do an animation where the first activity go to the left and the second activity enters from the right :

slide_out_left.xml

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

<!--
 Animation : Perform animation : Out - Direction : Left
-->

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

    <translate
       android:duration="400"
       android:fromXDelta="0"
       android:toXDelta="-100%p" />

</set>

slide_in_right.xml

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

<!--
 Animation : Perform animation : In - Direction : Right
-->

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:duration="400"
        android:fromXDelta="100%p"
        android:toXDelta="0" />
</set>

注意的:你可以改变的android:病程如果你想

Note : you can change android:duration if you want.

和你要添加这个code:

And you have to add this code :

public void onClick(View view) {

   Intent intent = new Intent(TestAppActivity.this, SecondActivity.class);
   startActivity(intent);
   overridePendingTransition(R.anim.slide_in_right, R.anim.slide_out_left);
   finish();
}

这篇关于两项活动之间的动画不工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆