I have a TextView
which I rotate.
The rotation causes the text View to be a little bit translated.
Because of this at the same time I want to do 2 transitions in x and y direction.
I know where the View should be but I don´t know where it is and when one wants to do a translation I only can tell how far I want to transpose not what to.
myTextView.setTranslationX(60);
that is the function I know and every other way you have to give how far not what to.
I always want to translate the view to left corner of my device.
** I know that the first thing that comes to mind is to get the distance between edge of screen and edge of View but that doesn´t work because the rotation hasn´t finished and I can´t wait for it because I want it to look smoothly animated.