我可以更改Android startActivity()过渡动画吗?


Answers:


33

在执行finish()的同一条语句中,也在那里执行动画。然后,在新活动中,运行另一个动画。参见以下代码:

fadein.xml

<set xmlns:android="http://schemas.android.com/apk/res/android" 
     android:fillAfter="true">
     <alpha android:fromAlpha="1.0" 
            android:toAlpha="0.0"
            android:duration="500"/> //Time in milliseconds
</set>

在你的最后一堂课

private void finishTask() {
    if("blabbla".equals("blablabla"){
        finish();
        runFadeInAnimation();
    }
}

private void runFadeInAnimation() {
    Animation a = AnimationUtils.loadAnimation(this, R.anim.fadein);
    a.reset();
    LinearLayout ll = (LinearLayout) findViewById(R.id.yourviewhere);
    ll.clearAnimation();
    ll.startAnimation(a);   
}

fadeout.xml

<set xmlns:android="http://schemas.android.com/apk/res/android"
           android:fillAfter="true">
  <alpha android:fromAlpha="0.0"
         android:toAlpha="1.0"
         android:duration="500"/>
</set>

在新的Activity-class中,您将创建类似的方法,例如我编写的runFadeAnimation,然后在onCreate中运行它,并且不要忘记将资源ID更改为渐变。


1
此外,最好使用默认的短动画时间:android:duration="@android:integer/config_shortAnimTime"
elimirks 2013年

在哪里runFadeAnimation()
Choletski '16

2
伙计们,请确保在本文下方看到真正的答案。
Android开发人员

什么是布拉布拉??
阿里·卡其

288

从API级别5开始,您可以立即调用overridePendingTransition以指定显式过渡动画:

startActivity();
overridePendingTransition(R.anim.hold, R.anim.fade_in);

要么

finish();
overridePendingTransition(R.anim.hold, R.anim.fade_out);

17
添加类似的内容:@Override public void onBackPressed(){super.onBackPressed(); OverridePendingTransition(R.anim.hold,R.anim.fade_out); }以添加回动画。
RightHandedMonkey

1
这应该是最好的干净答案。
cy198706

1
@RightHandedMonkey用于添加动画更好地覆盖finish(); 在活动以除后退按钮(例如自定义退出按钮...)以外的其他内容结束的情况下的活动方法。
Itiel Maimon '18

43

查看Android上的主题:http : //developer.android.com/guide/topics/ui/themes.html

themes.xml下,应该可以android:windowAnimationStylestyles.xml中看到样式的声明。

示例实现:

<style name="AppTheme" parent="...">

    ...

    <item name="android:windowAnimationStyle">@style/WindowAnimationStyle</item>

</style>

<style name="WindowAnimationStyle">
    <item name="android:windowEnterAnimation">@android:anim/fade_in</item>
    <item name="android:windowExitAnimation">@android:anim/fade_out</item>
</style>



3
最佳解决方案。
Abhishek kumar,

您将如何@android:anim/fade_in从Java代码访问?
Tamoxin

16

overridePendingTransition

startActivity();
overridePendingTransition(R.anim.fadein, R.anim.fadeout);

fadein.xml

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

fadeout.xml

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

9

如果您始终希望活动具有相同的过渡动画

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);

@Override
protected void onPause() {
    super.onPause();
    if (isFinishing()) {
        overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
    }
}

8

对于fadeInfadeOut,仅将其添加到新Activity类中的super.onCreate(savedInstanceState)之后。您无需创建其他内容(无需XML,没有动画文件夹,无需任何其他功能)。

overridePendingTransition(R.anim.abc_fade_in,R.anim.abc_fade_out);

1
overridePendingTransition(android.R.anim.fade_in,android.R.anim.fade_out);
Farid Z

4

您可以简单地创建上下文并执行以下操作:

private Context context = this;

还有你的动画:

((Activity) context).overridePendingTransition(R.anim.abc_slide_in_bottom,R.anim.abc_slide_out_bottom);

您可以使用任何想要的动画。


1

我想使用styles.xml解决方案,但是它对我的活动不起作用。事实证明,除了使用android:windowEnterAnimation和之外android:windowExitAnimation,我还需要使用以下活动动画:

<style name="ActivityAnimation.Vertical" parent="">
    <item name="android:activityOpenEnterAnimation">@anim/enter_from_bottom</item>
    <item name="android:activityOpenExitAnimation">@anim/exit_to_bottom</item>
    <item name="android:activityCloseEnterAnimation">@anim/enter_from_bottom</item>
    <item name="android:activityCloseExitAnimation">@anim/exit_to_bottom</item>
    <item name="android:windowEnterAnimation">@anim/enter_from_bottom</item>
    <item name="android:windowExitAnimation">@anim/exit_to_bottom</item>
</style>

0
 // CREATE anim 

 // CREATE animation,animation2  xml // animation like fade out 

  Intent myIntent1 = new Intent(getApplicationContext(), Attend.class);
  Bundle bndlanimation1 =  ActivityOptions.makeCustomAnimation(getApplicationContext(), 
  R.anim.animation, R.anim.animation2).toBundle();
  tartActivity(myIntent1, bndlanimation1);
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.