Android bitmap.getwidth 返回 null?

发布于 2024-11-29 13:45:27 字数 419 浏览 1 评论 0原文

我想在加载位图后获取其宽度,并且我正在使用这段代码,其中 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

允世 2024-12-06 13:45:27

您的位图可能不正确。否则尝试简化您的代码以查看错误在哪里。或者只是查看一些网页。

Your bitmap may be incorrect. Otherwise try to simplify your code to see where's the error. Or just check out some web pages.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文