I am creating an app that i want to NEVER use Window Animations.. I have tried using
intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
in methods that call new intents..
and i have also tried putting it in my intent filters of my manifest like so:
<data android:name="android.content.Intent.FLAG_ACTIVITY_NO_ANIMATION" />
either way only seems to deal with one side of window animation, meaning it seems to still animate in, the intent, just not out..
There has to be a simple way to disable all window animations in an app..