I wondered if there could be a simple method to display a text contained in a TextView in such a way that it would have to be read in a mirror (like a head up display)? By "simple method" I mean a way that would avoid a full rewrite of my app ;-)
Asked
Active
Viewed 641 times
1 Answers
2
From what i've read so far, the only way to get a text mirrored is to override the onDraw()
method. Not exactly a "simple way", but if you're up to it, this is probably the place to start.

iDroid
- 10,403
- 1
- 19
- 27
-
Thanks for the answer. It doesn't sound as simple as I expected, but I think I'll give it a try... – Georges Jul 28 '11 at 12:59