面对这样的情况。当我在“drawable”文件夹中加载图像时 - 具有不同的图像尺寸。下载前的图像以像素为单位大小相同,以字节为单位大小不同
解释什么是错的以及如何对抗它?
if (menu_item.get_Item_Use() == true ) {
imageView.setImageResource(R.drawable.ic_menu_arrow_icon);
} else {
imageView.setImageResource(R.drawable.ic_menu_arrow_icon_pressed);
}