我有SD卡中存在的图像路径。我想将其设置为图像视图的背景。是否可以使用与URl相同的方法? 请帮忙..
答案 0 :(得分:6)
要首先设置图像视图的背景,您必须从图像路径创建Drawable并使用setBackgroundDrawable()
方法设置背景
请尝试使用以下代码
Bitmap bitmapImage = BitmapFactory.decodeFile(imagePathFromSDCard);
Drawable drawableImage = new BitmapDrawable(bitmapImage);
imageview.setBackgroundDrawable(drawableImage);