你好,
我想获取存储在drawable文件夹中的图像的宽度和高度。
如果可以的话,有可能请告诉我吗?
最佳答案
尝试
BitmapDrawable bd=(BitmapDrawable) this.getResources().getDrawable(R.drawable.icon);
int height=bd.getBitmap().getHeight();
int width=bd.getBitmap().getWidth();
关于android - 如何获得图像的宽度和高度?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4552833/