如何将 List<File> 格式的图像转换为位图?

How to convert images in format List<File> to Bitmap?

请帮我把列表文件转换成位图?在 android java.

ArrayList<Bitmap> bitmapArray = new ArrayList<Bitmap>();    
if(bitmapArray.size() > 0)
{
  int index = bitmapArray.size() -1;
  Bitmap lastbitmap = bitmapArray.get(index);
  SubImageView.setImageBitmap(lastbitmap);
}

在函数中试试这个