如果Uri为空,我想为Uri设置图片,这就是我所做的:
if (imageUri == null)
{
imageUri = imageUri.parse(String.valueOf(R.drawable.no_image_available));
}
它不会给出任何错误,但是它不起作用,还有其他方法可以用来实现此目的吗?
最佳答案
Bitmap yourImageNotFoundBitmap = BitmapFactory.decodeResource(context.getResources(),
R.drawable.no_image_available);
if (imageUri == null){
yourImage.setImageBitmap(yourImageNotFoundBitmap);
}