嘿伙计们,我想在我的应用程序中显示供稿列表。我需要显示像facebook.Thumbnail这样的视频缩略图和图像中心的小视频图标。请帮助我如何做到这一点?
我正在使用此代码获取缩略图
Bitmap thumb = ThumbnailUtils.createVideoThumbnail(path, MediaStore.Images.Thumbnails.MINI_KIND);
答案 0 :(得分:1)
“我需要显示像facebook.Thumbnail这样的视频缩略图和图像中心的小视频图标”
为此,您可以使用框架布局。框架布局中的子项绘制在另一个上面。所以,在你的情况下: -
<FrameLayout
layout_width="match_parent"
gravity="center"
layout_height="match_parent">
<!-- This for video thumbnail-->
<Imageview
layout_width="wrap_content"
layout_height="wrap_content"/>
<!-- This for video icon in center-->
<Imageview
layout_width="50dp"
layout_height="50dp"/>
</FrameLayout>
我还没有编写其他属性,比如id属性。 我希望这就是你需要的东西