Android 页面跳转动画

动画的xml文件

push_in.xml

 push_out.xml

第一种:overridePendingTransition

打开  A->B  (push_bottom_in B的动画,no_animation A的无动画)

startActivity(LoginActivity.class);
overridePendingTransition(R.anim.push_bottom_in, R.anim.no_animation);

关闭 B->A(push_bottom_out B的动画,no_animation A的无动画)

finish();
overridePendingTransition(R.anim.no_animation, R.anim.push_bottom_out);

无动画的设置

1.<translate xmlns:android="http://schemas.android.com/apk/res/android"

  android:fromYDelta="0"

  android:toXDelta="0"

  android:duration="1000"/>

2.调用overridePendingTransition(enterAnim, exitAnim)时,enterAnim和exitAnim如果有为0的值,指的是不设置该动画。

 第二种,设置activity的主题,theme





在manifest

android:theme="@style/Loginanimation"

 

 

你可能感兴趣的:(问题一览)