前言
在项目中设置Activity
的进入进出动画时,发现当前页面从上到下退出时会往上弹一下再退出,导致页面底部会闪动一下,所以又到了填坑时刻。
1.简要介绍overridePendingTransition
当Activity进入和退出时的需要设置动画时,overridePendingTransition是一个不错的选择,先看一下这个方法的调用实际和需要传入的参数:
/**
* Call immediately after one of the flavors of {@link #startActivity(Intent)}
* or {@link #finish} to specify an explicit transition animation to
* perform next.
*
* <p>As of {@link android.os.Build.VERSION_CODES#JELLY_BEAN} an alternative
* to using this with starting activities is to supply the desired animation
* information through a {@link ActivityOptions} bundle to
* {@link #startActivity(Intent, Bundle)} or a related function. This allows
* you to specify a custom animation even when starting an activity from
* outside the context of the current top activity.
*
* @param enterAnim A resource ID of the animation resource to use for
* the incoming activity. Use 0 for no animation.
* @param exitAnim A resource ID of the animation resource to use for
* the outgoing activity. Use 0 for no animation.
*/
public void overridePendingTransition(int enterAnim, int exitAnim) {
try {
ActivityManager.getService().overridePendingTransition(
mToken, getPackageName(), enterAnim, exitAnim);
} catch (RemoteException e) {
}
}
上面的注释中可以看到,这个方法需要在startActivity()
或者finish()
方法之后立即被调用。
第一个参数enterAnim
:设置下一个即将到来的Activity
的进入动画;
第二个参数exitAnim
:设置当前即将退出的这个Activity
的退出动画。
当设置为0时表示没有动画。
例如:
...
finish();
overridePendingTransition(R.anim.push_left_in, R.anim.push_right_out);
...
点击按钮时,finish掉当前页面,并设置动画。R.anim.push_left_in
动画在res/anim
中定义。例如从下往上滑动出现:
<?xml version="1.0" encoding="utf-8"?><!-- 上下滑入式 -->
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromYDelta="100%p"
android:toYDelta="0.0"
android:duration="420"
/>
</set>
2.问题出现及解决方式
当然,也可以直接在AndroidManifest.xml
中定义当前Activity
的主题,在主题里面设置动画:
<activity
android:name="com.webclient.MainActivity"
android:theme="@style/MyMainStyle" />
在styles.xml
中定义MyMainStyle
:
<style name="MyMainStyle" >
<item name="android:windowAnimationStyle">@style/AnimBottom</item>
</style>
<style name="AnimBottom" parent="@android:style/Animation">
<item name="android:windowEnterAnimation">@anim/push_bottom_in</item>
<item name="android:windowExitAnimation">@anim/push_bottom_out</item>
</style>
当然要注意一下这里面的android:windowEnterAnimation
和overridePendingTransition
的第一个参数不一样。android:windowEnterAnimation
是指被设置该样式的Activity进入屏幕时的动画效果,而overridePendingTransition
的第一个参数enterAnim
是设置下一个即将进入屏幕的Activity
的进入动画。
然而这样设置在有底部虚拟导航栏的情况下就出现了问题:当前页面从上至下退出时会回弹一下再提出,导致屏幕底部会闪动一下。由于项目原因没有在调用startActivity()
开启这个activity的时候调用overridePendingTransition来设置这个页面的进入方式。因此只能在AndroidManifest.xml
中设置,即上述方式中设置<item name="android:windowEnterAnimation">@anim/push_bottom_in</item>
,由于是退出时发生闪动问题,此时去掉在xml
中设置的退出动画:<item name="android:windowExitAnimation">@anim/push_bottom_out</item>
,在此Activity
中重写finish()
方法,在里面调用overridePendingTransition
:
@Override
public void finish() {
super.finish();
overridePendingTransition(0, R.anim.push_bottom_out);
}
再次运行后bug消失,问题解决。因此直接在AndroidManifest.xml
文件中设置进入退出动画时在不同机型可能会有不同的效果,记下来提醒自己。
网友评论