我的应用程序通过 HTTP 从服务器加载图像并将其保存到文件中。然后我使用这段代码来获取 Drawable 并查看它:
File f=new File(path);
if(f.exists()) {
Bitmap bmp = BitmapFactory.decodeFile(f.getAbsolutePath());
if(bmp!=null) {
DisplayMetrics dm = m_activity.getResources().getDisplayMetrics();
bmp.setDensity(dm.densityDpi);
Drawable drawable=new BitmapDrawable(context.getResources(), bmp);
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
return drawable;
}
}
它在三星 Galaxy S2 上运行良好。但在三星 Galaxy S4 上,这个图像太小了。例如:
在 S2 上:
在 S4 上:
我需要在具有各种显示分辨率的所有设备上平等地显示它。可能吗?如何实施?