我遇到了 Android 应用程序运行时错误的问题。我不知道为什么
我最初将所有 px 大小更改为 dp 和 sp。然后我的应用程序停止工作。这是解释这一点的链接。
在Android应用程序中,我将所有px更改为dp和sp。现在不开放了。 出了什么问题?
我已将所有 dp 和 sp 更改回 px,所以现在它应该像以前一样工作,但它显示相同的错误消息,并且出现相同的问题。下面是调试器中的堆栈跟踪。任何人都可以帮助解决这个问题吗?
http://imageshack.us/photo/my-images/827/screenshot20110705at105 .png/
非常感谢。
I originally changed everything with a px size to dp and sp. Then my app stopped working. Here is the link explaining that.
In Android app,I changed all px to dp and sp. Now it is not opening. What is wrong?
I have changed all the dp and sp back to px so now it should be working as it did before but it is displaying the same error messages and the same problems occur. Below is the stack trace in the debugger. Can anyone help solve this problem?
http://imageshack.us/photo/my-images/827/screenshot20110705at105.png/
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否自动替换(即通过“查找并替换”)将所有
px
替换为dp
?如果是这样,可能是您替换了某些 ID 中的px
或其他内容。检查这是否是问题所在。Did you replaced automatically, i.e. with "Find & Replace" all
px
withdp
? If so, may be you replacedpx
in some ID or something. Check if that is the problem.