In my app a user can animate a view (fragment) on another view. A simple ObjectAnimator does its tranlateY trick and after the animation is complete the view is visible with TextViews and EditTexts.
But when pressing an EditText the keyboard shows and for some reason my view, which was animated with ObjectAnimator, returns to its pre animated position. First I thought it was because the view gets redrawn (like orientation change) so I added "setRetainInstance(true);" but that doesn't work either.
How can I fix this problem?