如何从SD卡动态设置imageView背景?

时间:2011-12-13 11:28:46

标签: android

我有SD卡中存在的图像路径。我想将其设置为图像视图的背景。是否可以使用与URl相同的方法? 请帮忙..

1 个答案:

答案 0 :(得分:6)

要首先设置图像视图的背景,您必须从图像路径创建Drawable并使用setBackgroundDrawable()方法设置背景

请尝试使用以下代码

Bitmap bitmapImage = BitmapFactory.decodeFile(imagePathFromSDCard);
        Drawable drawableImage = new BitmapDrawable(bitmapImage);

        imageview.setBackgroundDrawable(drawableImage);