Activity取消默认转场动画;去掉默认转场动画;

取消默认转场动画:

一般启动一个新的Activity都默认有切换的动画效果,比如打开界面时从右至左的移动、关闭时从右向左的移动,又或者是上下移动。但是有的时候我们不想要这个动画怎么办?

来上代码:

manifest中全局的:


    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">



这样就可以了;

单个activity取消动画:

android:name=".activity_shop.ShopHomeActivity" 
    android:theme="@style/Animation"/>

添加转场动画:

传送门:http://blog.csdn.net/qq_35605213/article/details/79568220


你可能感兴趣的:(Android)