I am trying to generate a mirrored image for a TextView.
One of the simple solutions seems to be setting textDirection as "Right to Left" i.e.
textView.setTextDirection(View.TEXT_DIRECTION_RTL);
However, this only seems to work for api level 17 and above.
Not being familiar to TextViewCompat .. i am unable to decode how to use this functionality for api level 10.
- Question is: - How do I use textView.setTextDirection() method for api level 10 ??
Any pointers are really appreciated !!