本文介绍了在垂直方向上的android文本视图的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个的TextView
中,我显示的文字 12345
现在我想显示的文字
I have a Textview
in which i am showing text 12345
now i want to show text
1
2
3
4
5
我试过旋转
但它旋转我的文字,而不是给予确切的外观。
我不想把\ñ标签在字符
。
我不想定制。
I tried rotation
but it rotate my text and not giving the exact look.
I don't want to place \n tag in character
.
I don't want customization.
推荐答案
您可以扩展的TextView
来您的自定义 VerticalTextView
和覆盖的setText()
方法。在的setText
的实施可以遍历文本,并修改它插入换行符 \ñ
。完成后需要刚才设置的结果值到你的看法。
You could extend TextView
to your custom VerticalTextView
and override setText()
method. In setText
implementation you could iterate through text and modify it inserting linebreaks \n
. After you finish just set result value to your view.
这篇关于在垂直方向上的android文本视图的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!