How to make a TextView Text vertical
android
Solution
A simple solution may be to insert a `\n` after each character, and make sure that the the height is set to `fill_parent`.
Problem
I want a vertical label for my app. Is there a property to make text vertical? Here's what I mean vertical label: ``` S t a c k o v e r f l o w ``` thanks ahead.