Android 中的 EditText 倾斜?

发布于 2024-10-14 04:32:19 字数 38 浏览 0 评论 0原文

我想显示稍微倾斜而不是完全水平的编辑文本。有谁知道我该怎么做?

I want to display editext which is slightly inclined not completely horizontal. Does anyone know how can I do that?

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

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

发布评论

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

评论(1

青衫儰鉨ミ守葔 2024-10-21 04:32:19

您可以在绘制文本之前使用 Canvas.rotate() 。您应该在旋转之前调用 save(),然后再调用 restore()

如果您想要倾斜的基线但字母垂直(不旋转),则没有 API 支持。您必须自己渲染每个字母,并在自己的代码中计算字母之间的基线偏移。

You can use Canvas.rotate() before drawing the text. You should call save() before rotating, and then restore() afterwards.

If you want an inclined baseline but the letters vertical (not rotated), there's no API support for that. You're going to have to render each letter yourself and calculate the baseline shift from letter to letter in your own code.

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