当我通过意图调用活动时,活动会在设备中滑动。 如何阻止活动的发生? 这就是我通过意图调用其他活动的方式
Intent i = new Intent(this,Main2Activity.class);
startActivity(i);
答案 0 :(得分:0)
使用overridePendingAnimation(0,0);在startActivity()之后调用
答案 1 :(得分:0)
创建一个样式,
<style name="noAnimTheme" parent="android:Theme">
<item name="android:windowAnimationStyle">@null</item>
</style>
然后在清单中将其设置为活动或整个应用程序的主题。
<activity android:name=".MainActivity" android:theme="@style/noAnimTheme">
</activity>