从上到下显示textview中文字符;右到左

时间:2017-01-11 08:45:48

标签: android

如何显示textView,使其字符从上到下排序;右到左?必须有一种比重新订购我的所有文本更好(也更少繁琐)的方式。

例如,以下中文文本: -

enter image description here

以中国传统书法格式(即从上到下/从右到左)显示时,应为: -

enter image description here

这样

  

VERSE1,VERSE2
  第3节,第4节

变为

   v V
  e E
  r R
  s S
  e E
  3 1
  ,,,
  v V
  e E
  r R
  s S
  e E
  4 2

旋转不是我想要的,因为它倾斜文本而不是重新排序字符。任何建议都表示赞赏。

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@String/poem_24"
    android:rotation="90"/>

enter image description here

注意文字向侧面倾斜,而不是直立显示。

0 个答案:

没有答案