在android中的coverflow中添加图像下方的文本

发布于 2024-10-23 18:35:04 字数 236 浏览 1 评论 0原文

我正在开发一个 Android 应用程序 Tft。

我已经从此 URL 下载了 coverflow 示例: Android Coverflow Widget< /a>

我想将文本放置在该列表中所有图像的下方。我该怎么做?

I am developing an android application Tft.

I had downloaded coverflow example from this URL: Android Coverflow Widget

I want to place text below all the image in that list. How can i do this?

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

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

发布评论

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

评论(1

蛮可爱 2024-10-30 18:35:04

我在使用 coverflow 小部件时也遇到了同样的问题。

经过一番研究,提出了使用canvas.drawText()方法的解决方案。

在绘制反射图像的方法中添加canvas.drawText(String,origin-x,origin-y,paint)。

例如:canvas.drawText("helloo", 10, 10, new Paint())

I was also facing the same problem with coverflow widget.

After some research, came up with a solution of using canvas.drawText() method.

Add canvas.drawText(String, origin-x, origin-y, paint) in the method where you draw the reflected image.

eg: canvas.drawText("helloo", 10, 10, new Paint())

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