I am trying to slide a webview to the side, revealing another webview underneath it. I want to support android 2.2 and up, so I had to use a library to support animation in the 3.0+ way. I used NineOldAndroids to handle Animations. This works great. But unfortunately, when the animate(mainView).x(px); finishes, on versions lower than 3.0, the hitboxes in the webview did not update their position. How do I force the layout to update so that all the button-hitboxes also shift with the webview?
EDIT: The way it looks right now is that I use NineOldAnroids library
import static com.nineoldandroids.view.ViewPropertyAnimator.animate;
And animate the x by a value of px (which is a float)
animate(mainView).x(px)
Now when I press a link on the animated webview, it doesn't work. When I press the link at the position where the webview used to be, it works. So clearly only the pixels of the webview have been moved, but not the actual layout. How do I tackle this problem?
Thanks a lot!