Android Bitmap 与 Drawable之间的转换

转换Bitmap to Drawable
  1. Bitmap bitmap = new Bitmap (...);       
  2. Drawable drawable = new BitmapDrawable(bitmap);


转换Drawable to Bitmap
  1. Drawable d = ImagesList.get(0);    
  2. Bitmap bitmap = ((BitmapDrawable)d).getBitmap();   

你可能感兴趣的:(android)