let's see if someone can help me with this.
In my app I have successfully implemented slide transitions between most of my activities. All my activities layouts consist in a regular toolbar and some content below. So what I would like is the animations to ignore the toolbar and only affect the main content.
Ideally, the toolbar would remain in its place and the main content of the layout would be the one sliding.
For completion of the question, here is one of my transition xmls:
<?xml version="1.0" encoding="utf-8"?>
<translate
android:duration="500"
android:fromXDelta="100%"
android:toXDelta="0%" >
</translate>
and this is the way I'm setting transitions:
overridePendingTransition(R.transition.out, R.transition.in);
Thanks