1

嗨,我想将Bitmap位图列表中的最后一个显示为ImageView. 这是我的代码:

SubImageView = (ImageView) findViewById(R.id.SubImageView);
ArrayList<Bitmap> bitmapArray = new ArrayList<Bitmap>();
bitmapArray.add(myBitMap);
4

1 回答 1

4
if(bitmapArray.size() > 0)
{
  int index = bitmapArray.size() -1;
  Bitmap lastbitmap = bitmapArray.get(index);

  SubImageView.setImageBitmap(lastbitmap);
}
于 2012-07-31T11:07:39.373 回答