我正在使用下面的代码检查高级版应用程序的启动活动,但是当它移动到主活动时,启动活动被关闭并创建一个关闭动画并打开新活动。移动到主活动时如何避免关闭启动活动的动画?
if (checkForPremium()) {
sendToMainActivity();
}
private void sendToMainActivity() {
Intent intent = new Intent(StartUp.this, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK
| Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
finish();
}