Android examples for Graphics:Bitmap Thumbnail
get youtube Video Thumbnail
//package com.java2s; import android.util.Log; public class Main { private static final String TAG = "YoutubeHelper"; public static String getVideoThumbnail(String videoId) { Log.d(TAG, "Getting thumbnail for video : " + videoId); return "http://img.youtube.com/vi/" + videoId + "/0.jpg"; }/*from www .j a v a2 s. com*/ }