我在资产文件夹中有一个要显示的位图图像列表(使用 ViewPager)。我尝试根据屏幕尺寸(使用布局参数)设置图像的宽度和高度。但是图像质量会受到干扰。如何让图像质量更好?
Drawable drw = Drawable.createFromStream(getAssets().
open("Parts/"+drawables[i]),null);
在这里,drawables[i]
是String[]
(比如ball.bmp,“Parts”是asset的子文件夹)。现在,我已将 imageview 中的图像设置为,
imageView.setBackgroundDrawable(imageArray[position]);
该图像在移动设备中看起来不错,但在标签中看起来很拉伸。