Android 中的 EditText 倾斜?
我想显示稍微倾斜而不是完全水平的编辑文本。有谁知道我该怎么做?
I want to display editext which is slightly inclined not completely horizontal. Does anyone know how can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在绘制文本之前使用 Canvas.rotate() 。您应该在旋转之前调用
save()
,然后再调用restore()
。如果您想要倾斜的基线但字母垂直(不旋转),则没有 API 支持。您必须自己渲染每个字母,并在自己的代码中计算字母之间的基线偏移。
You can use Canvas.rotate() before drawing the text. You should call
save()
before rotating, and thenrestore()
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.