I am developing an app and I have tab bars on top and bottom of the screen.
These tab bars are included with include tag for every layouts so they will appear every time.But while a new activity is starting , my tab bars also move because of transition anim between activities.I want them stable.How can I do that.Thanks for advices..
I am developing an app and I have tab bars on top and bottom
Share
You first probably have to disable the default animation for the activity. This should help: Disable activity slide-in animation when launching new activity?
And then apply the animation you want to the (non-tab)view, in the onCreate() of the launched activity, using a view animation. This could be a good start: http://developer.android.com/guide/topics/graphics/view-animation.html