thats a simple rotation around the midpoint of the view...
I want to rotate the textview around a specific point (x,y) like i can do with imageViews
– ChrissssJun 18 '15 at 08:22
1
That's what `android:pivotX` and `android:pivotY` are doing... The `50%` is used to center the pivot. Just move the value. http://developer.android.com/reference/android/view/View.html#setPivotX%28float%29
– Michael LaffargueJun 18 '15 at 08:27