如何在QListView中设置图片
我已经使用此代码从手机内存中获取图片...
TFileName path = PathInfo::PhoneMemoryRootPath();
path.Append( PathInfo::ImagesThumbnailPath());
我如何在列表视图中设置此图片路径? 有什么帮助吗?
谢谢..
i have use this code for getting pictures from Phone's memory...
TFileName path = PathInfo::PhoneMemoryRootPath();
path.Append( PathInfo::ImagesThumbnailPath());
How can i set this picture path in my listview?
Any help?
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对手机编程了解不多,但在 Qt(桌面)程序中,您可以使用 QPixmap::load 读取图像。然后您可以创建 QLabel 并设置它们的像素图。或者您使用 QItemDelegate 来显示图像。
I don't know much about phone programming, but in a Qt (desktop) program you would read the image with QPixmap::load. You could then create QLabels and set their pixmaps. Or you use a QItemDelegate to display the images.