我在应用程序中使用谷歌地图服务。地图运行良好问题是当设备通过wifi热点连接互联网时,在这种情况下在启动屏幕后显示白色屏幕5秒。
当我禁用maps.googleapis.com url时,此时不会出现白色屏幕。
我在config.xml文件中包含了所有权限,但仍然遇到了同样的问题。
我以下面的方式加入了谷歌地图服务。
config.xml文件权限作为
<access origin="*"/>
<access origin="http://maps.googleapis.com/*"/>
<access origin="*://*.googleapis.com/*" subdomains="true" />
<access origin="*://*.gstatic.com/*" subdomains="true" />
<access origin="*://*.google.com/*" subdomains="true" />
<access origin="*://*.googleusercontent.com/*" subdomains="true" />
尝试在触发"deviceready"事件前后在脚本中添加控制台。然后您就会知道deviceready事件的超时时间为5秒。你可以在logcat窗口中看到消息
希望这能有所帮助!!