【发布时间】:2014-03-09 10:38:40
【问题描述】:
同一Textview android中的文本,第一张图片编号格式不正确 3/4 4 来自注2
grand and format 的下一张图片很好 4 3/4
如何在 android 中将其修复为与图像 2 相同??
【问题讨论】:
标签: android textview arabic number-formatting
同一Textview android中的文本,第一张图片编号格式不正确 3/4 4 来自注2
grand and format 的下一张图片很好 4 3/4
如何在 android 中将其修复为与图像 2 相同??
【问题讨论】:
标签: android textview arabic number-formatting
您必须使用它来格式化来自相同 TextView 的文本。你可以使用很多其他的 html 标签来实现你所需要的。
textView.setText(Html.fromHtml("some text <b>other bold text</b>"));
【讨论】:
尝试使用
textview.setTextDirection(View.TEXT_DIRECTION_RTL);
或者
textview.setTextDirection(View.TEXT_DIRECTION_ANY_RTL);
【讨论】: