119

我正在开始一项活动,宁愿让 alpha 淡入startActivity()和淡出finish(). 我怎样才能在 Android SDK 中解决这个问题?

4

10 回答 10

297

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

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

或者

finish();
overridePendingTransition(R.anim.hold, R.anim.fade_out);
于 2012-02-15T09:45:31.253 回答
47

在 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>
于 2010-08-18T18:21:32.373 回答
35

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

淡入淡出.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);   
}

淡出.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 类中,您创建一个类似于我编写的 runFadeAnimation 的方法,然后在 onCreate 中运行它,不要忘记将资源 id 更改为淡出。

于 2010-08-18T18:55:29.143 回答
21

利用overridePendingTransition

startActivity();
overridePendingTransition(R.anim.fadein, R.anim.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/accelerate_interpolator"
        android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="500" />
</set>

淡出.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>
于 2017-03-01T20:46:23.080 回答
12

对于fadeInfadeOut,仅在您的新 Activity 类中的super.onCreate(savedInstanceState)之后添加。您不需要创建其他东西(没有 XML、没有动画文件夹、没有额外的功能)。

overridePendingTransition(R.anim.abc_fade_in,R.anim.abc_fade_out);
于 2017-06-23T11:32:52.610 回答
10

如果你总是想为 Activity 使用相同的过渡动画

@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);
    }
}
于 2018-07-21T17:11:03.737 回答
5

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

private Context context = this;

还有你的动画:-

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

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

于 2016-12-27T10:35:51.623 回答
3

我想使用 styles.xml 解决方案,但它不适用于我的活动。事实证明,我需要使用这样的活动动画,而不是使用android:windowEnterAnimationand :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>

然后我在我的主题中引用:

<style name="AppTheme">
    ...
    <item name="android:windowAnimationStyle">@style/ActivityAnimation.Vertical</item>
    ...
</style>

此外,由于某种原因,这只适用于 Android 8 及更高版本。我将以下代码添加到我的 BaseActivity 中,以针对以下 API 级别对其进行修复:

override fun finish() {
    super.finish()
    setAnimationsFix()
}

/**
 * The activityCloseExitAnimation and activityCloseEnterAnimation properties do not work correctly when applied from the theme.
 * So in this fix, we retrieve them from the theme, and apply them.
 * @suppress Incorrect warning: https://stackoverflow.com/a/36263900/1395437
 */
@SuppressLint("ResourceType")
private fun setAnimationsFix() {
    // Retrieve the animations set in the theme applied to this activity in the manifest..
    var activityStyle = theme.obtainStyledAttributes(intArrayOf(android.R.attr.windowAnimationStyle))
    val windowAnimationStyleResId = activityStyle.getResourceId(0, 0)
    activityStyle.recycle()
    // Now retrieve the resource ids of the actual animations used in the animation style pointed to by
    // the window animation resource id.
    activityStyle = theme.obtainStyledAttributes(windowAnimationStyleResId, intArrayOf(android.R.attr.activityCloseEnterAnimation, android.R.attr.activityCloseExitAnimation))
    val activityCloseEnterAnimation = activityStyle.getResourceId(0, 0)
    val activityCloseExitAnimation = activityStyle.getResourceId(1, 0)
    activityStyle.recycle()
    overridePendingTransition(activityCloseEnterAnimation, activityCloseExitAnimation);
}
于 2020-06-04T07:35:29.810 回答
2
 // 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();
  startActivity(myIntent1, bndlanimation1);
于 2020-02-07T07:55:48.310 回答
1

大多数答案都非常正确,但其中一些已被弃用,例如在使用R.anim.hold时,其中一些只是详细说明了该过程。

因此,您可以使用:

startActivity(intent);
overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
于 2020-08-11T09:47:32.343 回答