Android 中的自定义图库缩略图
感谢您的阅读!
我正在使用Android Gallery教程,想知道是否有办法自定义图库的缩略图>例如:在图像上显示标题?
谢谢!
Thanks for reading!
I am using the Android Gallery tutorial and wondering if there's a way to customize the thumbnails of the gallery> For eg: Display caption ON the image?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在尝试了此处建议的所有方法后,我仍然无法按照我想要的方式获得自定义图库。我不断遇到
ClassCastException
。所以,这就是到目前为止对我有用的方法。这只是一种解决方法,如果有人想出更好的方法来设计自定义图库 - 请在此处发布您的答案,以便我接受。感谢您的帮助!
After trying all approaches suggested here, I wasn't able to still get a custom gallery the way I wanted it to. I kept running into
ClassCastException
. So, here's what worked for me till now. This is just a workaround and incase someone comes up with a better way to design a custom gallery - do post your answer here so I can accept it.Thanks for helping out!
您可以完全自定义您的
图库
项目。只需从ImageAdapter
的getView
方法返回您想要的任何View
即可。(我假设您正在使用此教程)
You can completely customize your
Gallery
items. Just return whateverView
you want from thegetView
method of theImageAdapter
.(I assume your are using this tutorial)