android-如何将文本放在gridview中的图像上
在我的应用程序中,我使用 gridview 来显示图像,但我想在图像上显示文本。这可能吗?如果可以,我该如何实施?
谢谢。
In my application, I'm using a gridview to display images, but I want to display the text on the images. Is this possible? If so, how can I implement it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是给你一个提示。
您一定在这里看到过“hello gridview”: http://developer.android .com/resources/tutorials/views/hello-gridview.html
您只需要在适配器的 getview() 中获取自定义视图(可能是 LinearLayout)而不是 imageview 即可。
希望这有帮助。
Just give you a hint.
You must have seen "hello gridview" here: http://developer.android.com/resources/tutorials/views/hello-gridview.html
You just need to get a custom view (may be a LinearLayout) instead of a imageview in getview() in adapter.
Hope this help.