In my one activity page, there are many item. One of items, use startActivity() go to an android system settings activity, And its activity transition animation is slide_out_left.
The other items use startActivity() go to my own activity. and activity transition animation is fade_out(defined in my style.xml).
I think that is a reason, but I don't know why? Why my style.xml changed all activity transition animation except one. or its there something I didn't notice?
And how can I consistent all activity transition animation in XML file?
(I know overridePendingTransition() can change the animation, but I want to modify in .xml file, not in java code, to stay my java code easy readable in the future.)