如何在Android中的TextView中对齐文本

时间:2014-12-17 15:48:53

标签: android

我想将文本证明为textView。我不想使用网页浏览。因为我不能在运行时为不同的屏幕增加文本大小。所以我想要使用文本视图。 我想要一些类似的东西。enter image description here

1 个答案:

答案 0 :(得分:0)

您可以在TextView上设置HTML。

因此...

String htmlString = "<p align=\"justify\">This is some text in a paragraph.</p>";
mTextView.setText(Html.fromHtml(htmlString));
祝你好运。 :)