Android bitmap.getwidth 返回 null?
我想在加载位图后获取其宽度,并且我正在使用这段代码,其中 mybackground 是一个等于 R.drawable.background 的 int 。
background=BitmapFactory.decodeResource(context.getResources(),mybackground );
scalefactorbackx=WindowInfo.Width/background.getWidth();
scalefactorbacky=WindowInfo.Height/background.getHeight();
到目前为止,它在这一行返回一个空指针异常。我必须做一些根本上错误的事情才会失败。我读到的在线教程似乎只是调用 .getWidth()
函数,并且它应该可以工作。
谢谢
I want to get the width of a bitmap after loading it and i am using this code where mybackground is an int that is equal to R.drawable.background
.
background=BitmapFactory.decodeResource(context.getResources(),mybackground );
scalefactorbackx=WindowInfo.Width/background.getWidth();
scalefactorbacky=WindowInfo.Height/background.getHeight();
So far it returns a null pointer exception on this line. I have to be doing something fundamentally wrong for this to fail. Tutorials online that I read appeared to just call the .getWidth()
function and it was suppose to work.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的位图可能不正确。否则尝试简化您的代码以查看错误在哪里。或者只是查看一些网页。
Your bitmap may be incorrect. Otherwise try to simplify your code to see where's the error. Or just check out some web pages.