I’ve created 2 TextView. One of them was rotated to 30 degrees from vertical. Another one was rotated to 40 degrees from vertical.
There are 2 problems:
- While I set fixed typeface and fixed text size to these views, it
looks like they have different text sizes. Why? - When I set text to textViews, it sometimes depicted broken. And
only for rotated views.
I couldn’t guess you problem, cause you do not provide code, nor layouts ….
But in cases like this it is useful to do this
textview.invalidate();
this is method that sometimes really helps when you have complex drawrings. cause the sometimes components are lazy and they do not update them self.