视频缩略图 android 1.6
我想在 imageView 中显示 SD 卡中视频的缩略图。
我知道有新的 Video.Thumbnail 类可用,但它来自 android 2.1,我希望它能在 1.6 上工作。
通过研究,我了解到有一些 MediaMetadataRetriever 接口,但它给了我运行时异常。
尼奥可以帮忙吗?
I want to display thumbnail of a video from SD card in an imageView.
I know theres new Video.Thumbnail class available but its from android 2.1 and I want this to work on 1.6.
From research I got to know that theres some MediaMetadataRetriever interface but its giving me runtime exceptions.
Can neone please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MediaMetadataRetriever 是一个私有 API,预计无法跨 Android 版本运行。最好的选择是使用 这个答案如果完全有可能针对 Android-8 (Froyo)。
MediaMetadataRetriever is a private API and not expected to work across Android versions. Your best bet is to use the method in this answer if it is at all possible to target Android-8 (Froyo).