Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ImageView iv = (ImageView) findViewById(R.id.imageView1);
  2. String filepath = "android.resource://" + getPackageName() + "/" + R.raw.videotest;
  3. Bitmap bm = ThumbnailUtils.createVideoThumbnail(filepath, Thumbnails.MINI_KIND);
  4. iv.setImageBitmap(bm);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement