Is it possible to write vertically in a textview in android?

You can set your textview as you would normally do for example: <TextView android:id=”@+id/txtview” android:layout_height=”fill_parent” android:layout_width=”wrap_content” /> and write a function in your activity to reverse the characters in your text insert \n after every characters and then set the text to the TextView. If you dont want to insert the \n, you will have … Read more