I am trying to display a thumbnail for my videoview, I have an imageview layered ontop that I want to place a thumbnail... I tried this but it is not working not sure if the url which is being passed as a string is the problem? No errors and the image just does not display the placeholder shows though, so it has to do with either the way I am doing the bitmap, the link also shows the video correctly.
String filePath = ""http://unknown.com/v3-1aox9d1.mp4"";
ImageView imageview_micro = (ImageView)findViewById(R.id.thumbnail_micro);
Bitmap bmThumbnail;
//MICRO_KIND, size: 96 x 96 thumbnail
bmThumbnail = ThumbnailUtils.createVideoThumbnail(filePath, Thumbnails.MICRO_KIND);
imageview_micro.setImageBitmap(bmThumbnail);