在android中的coverflow中添加图像下方的文本
我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在使用 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())