在xxhdpi的Android手机中运行如下代码,返回值为多少()注1:i...
在xxhdpi的Android手机中运行如下代码,返回值为多少( )
注1:ic_launcher是一张放在drawable-xxhdpi目录下的png图片,大小为144x144。
注2:默认加载格式为ARGB-8888。
int getLauncherIconByteCount(Resource resource) {
Bitmap bitmap = BitmapFactory.decodeResource(resource, R.drawable.ic_launcher)
return bitmap.getAllocationByteCount()
}