Android:拉伸文本以使字母填满设备屏幕

发布于 2024-11-28 04:47:16 字数 87 浏览 0 评论 0原文

我正在尝试拉伸文本,以便给定的字符串填充整个屏幕。我知道如何使 TextView 对象填充屏幕,但无法让实际的字母执行相同的操作。谁能建议一种方法来做到这一点?

I'm trying to stretch text so that a given string fills the entire screen. I know how to make the TextView object fill the screen, but can't get the actual letters to do the same. Can anyone suggest a way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

打小就很酷 2024-12-05 04:47:16

如果这是一些静态文本,您可以手动拉伸它,

yourTextView.setTextScaleX((float) 1.6 );  // set to what ever fits

您可以缩放它并检查代码中的单词是否分成两行。

If that is some static text you could just strech it manually

yourTextView.setTextScaleX((float) 1.6 );  // set to what ever fits

you could scale that and check if the words break into two lines in your code.

残月升风 2024-12-05 04:47:16

使用网络视图。使用此格式设置文本(html 样式):

style="text-align:justify"

Use a Webview. Format the text using this (html style):

style="text-align:justify"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文