android 添加sdcard中的图片为背景图片

2019-04-15 15:52发布

RelativeLayout relative = (RelativeLayout)this.findViewById(R.id.layout); Bitmap bit1 = BitmapFactory.decodeFile("/mnt/sdcard/pic/sc1.jpg"); BitmapDrawable bd = new BitmapDrawable(getResources(),bit1); relative.setBackground(bd);