有谁知道如何在 ANDROID 布局中证明文本视图内容的合理性?
我一直在使用 android:gravity 属性,但仍然无法使我的文本内容在文本视图中合理。有人知道是否支持吗?有办法吗?有人成功了吗?
I have been playing with android:gravity attribut but still cannot make my text content justify in the textview. Does anybody know if it is supported ? Is there a way ? Anybody succeeded ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Android 似乎不支持完整的 Justification。 :(
你能实现的最好方法是左对齐或右对齐。
Android TextView 对齐文本
It would appear that Android does not support full Justification. :(
The best you can achieve is Left or Right Justification.
Android TextView Justify Text
您还可以设置 TextView 的宽度来包裹其内容(“wrap_content”)并在其父布局中对齐 TextView。
You could also make the width of the TextView to wrap its content ("wrap_content") and justify the TextView in its parent Layout.
使用以下代码:
为了调用我创建的公式,您必须使用以下代码:
该算法在各种设备上进行了测试,并且在正常活动(不是对话框)和
wrap-content
宽度中运行良好>TextView,并处理每个填充和边距。如果不适合您,您可以更改widthJustify
直到看起来适合您,我希望这有用use the following code:
and for calling this I create formula, you must use following code:
this algorithm tested on various device and worked fine in normal activity (not dialog) and
wrap-content
width forTextView
, and worked with every padding and margin.if not good for you, you can changewidthJustify
until look good to you, I hope this usefulXML 布局:声明 WebView 而不是 TextView
Java 代码:将文本数据设置为 WebView
这可能会解决您的问题。
XML Layout: declare WebView instead of TextView
Java code: set text data to WebView
This may Solve your problem.