如何在android中定位StaticLayout?

发布于 2024-09-02 11:40:09 字数 141 浏览 10 评论 0原文

我想在 google 地图 api 上创建一个换行文本。我已经能够使用大量代码来做到这一点,但一直在研究更好的方法。我最近的尝试是使用 StaticLayout 类,并且文本正在换行,但我不知道如何定位它......无论我尝试什么,它总是从屏幕的左上角开始......

I want to created a wrapping text ontop of google maps api. I have been able to do this with a lot of code, but have been working on a better way. My latest attempt is to use the StaticLayout class and the text is wrapping, but I do not know how to position it...no matter what I try it is always starting in the top left corner of the screen....

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

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

发布评论

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

评论(2

梦里寻她 2024-09-09 11:40:09

在布局上调用 draw(c) 之前尝试执行 canvas.translate(x,y)

try doing a canvas.translate(x,y) before you call draw(c) on the layout.

倾`听者〃 2024-09-09 11:40:09

您可以按如下方式执行此操作

//Save canvas before translating it, otherwise restore will cause crash (Underflow in restore - more restores than saves)
canvas.save()

canvas.translate(xPos, yPos);
statictextlayout.draw(canvas);

//After that to reset the canvas back for everything else
canvas.restore();

之后要继续正常绘制...在静态布局绘制后调用canvas.restore(),您应该可以继续在画布上绘制。

You can do it as follows

//Save canvas before translating it, otherwise restore will cause crash (Underflow in restore - more restores than saves)
canvas.save()

canvas.translate(xPos, yPos);
statictextlayout.draw(canvas);

//After that to reset the canvas back for everything else
canvas.restore();

To continue drawing normally afterwards... call canvas.restore() after you staticlayout draw and you should be good to continue drawing on you canvas.

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