0

我在从中删除图像时遇到问题ImageView。我想要的图像被加载ImageView,然后相机拍摄新图像,现在应该加载图像以ImageView替换前一个图像。我努力了

  1. invalidate();
  2. setImageBitmap(null);
  3. setImageResource(0);

所有这 3 种方法都不起作用。有人能帮我吗。

4

3 回答 3

0

使用它在 ImageView 中设置图像

image.setImageResource(R.drawable.image);
于 2013-06-28T06:08:41.973 回答
0
  • 如果你想通过 Drawable Image 设置图像,你可以像这样使用

    your_image_view.setImageDrawable(context.getResources().getDrawable(your_drawable_Image_id));
    
  • 如果你想通过 BitMapDrawable 设置图像

    your_image_view.setBackgroundDrawable(your_drawable_bitmap);
    
于 2013-06-28T06:15:59.723 回答
0
edit_countflag.setBackgroundColor(0);
edit_countflag.setImageResource(R.drawable.flag_id);
于 2018-05-21T12:18:49.563 回答