我制作了一个自定义动画主题(向上和向下滑动)。
这个动画在老版本的android上运行得很好。
然而,当我在android 4.0(ics)上试用时,关闭动画不起作用。只有幻灯片动画可以在ics上正常工作。
以下是我在动画中使用的主题:

<style name="myTheme" parent="android:Theme.Black">
    <item name="android:windowTitleSize">45dip</item>
    <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
    <item name="android:windowAnimationStyle">@style/myTheme.Window</item>
</style>

<style name="myTheme.Window" parent="@android:style/Animation.Activity">
    <item name="android:activityOpenEnterAnimation">@anim/push_up_in_no_alpha</item>
    <item name="android:activityOpenExitAnimation">@anim/no_anim</item>
    <item name="android:activityCloseEnterAnimation">@anim/no_anim</item>
    <item name="android:activityCloseExitAnimation">@anim/push_down_out_no_alpha</item>
</style>

下面是push_down_out_no_alpha.xml:
<set xmlns:android="http://schemas.android.com/apk/res/android">
        <translate android:fromYDelta="0" android:toYDelta="100%p"
        android:duration="@android:integer/config_longAnimTime"/>
</set>

当我在代码中设置动画时,它在ics上也很好,但为什么不作为一个主题呢?
 this.overridePendingTransition(R.anim.no_anim,R.anim.push_down_out_no_alpha);

有人知道为什么它不能在android 4.0(ics)上运行吗?

最佳答案

从清单中指定动画在ics中似乎已中断:-(
覆盖动画解决方案工作良好,但您可能不想硬编码动画。从清单中获取它们会很好,就像在平台的其他版本中一样。所以…
在活动中添加两个成员字段以保存附加到活动的动画的ID。

protected int activityCloseEnterAnimation;
protected int activityCloseExitAnimation;

在你创造的某处…
// Retrieve the animations set in the theme applied to this activity in the
// manifest..
TypedArray activityStyle = getTheme().obtainStyledAttributes(new int[] {android.R.attr.windowAnimationStyle});
int 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 = getTheme().obtainStyledAttributes(windowAnimationStyleResId, new int[] {android.R.attr.activityCloseEnterAnimation, android.R.attr.activityCloseExitAnimation});
activityCloseEnterAnimation = activityStyle.getResourceId(0, 0);
activityCloseExitAnimation = activityStyle.getResourceId(1, 0);
activityStyle.recycle();

那么无论你的活动在哪里结束/应该应用动画包括…
overridePendingTransition(activityCloseEnterAnimation, activityCloseExitAnimation);

并且您的活动应该正确地遵守您在清单中附加到活动的主题/样式中设置的动画。

10-07 16:06
查看更多