I am wondering if its at all possible to cancel ALL animation when starting an singleInstance activity, i am already using
@Override
public void onStop() {
super.onStop();
overridePendingTransition(0, 0);
}
@Override
public void onResume() {
super.onResume();
overridePendingTransition(0, 0);
}
for when finish is called and
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
to activate it... but theres still a black screen ( short loading one). trying creating a costume Theme and didnt cancel it.
i kinda gave up hope... I know fragments will solve it. is there any way without?