Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个快速应用程序,但在调用下面的方法时遇到问题。
device.getInfo()
我正在尝试从提供的信息中获取手机的高度,但它总是返回0。
有什么建议么?
请检查app.ux文件的onCreate()方法中调用device.getInfo()方法时是否使用了异步模式。如果是,请删除异步模式。
删除异步模式后,如果高度仍为0,则可能在数据准备好之前调用device.getInfo()方法。数据准备好通常需要大约50-100 毫秒。