Android webview中不显示Google place页面

Android webview中不显示Google place页面,android,android-webview,Android,Android Webview,我想表现出来 通过Android emulator中的WebView访问网站,但我没有看到web 站点,并且在页面的位置标记下只能看到空白 我可以看到其他网站,如www.google.com 我需要为google place页面启用更多设置吗 舱单中的权限 <uses-permission android:name="android.permission.INTERNET" /> 你需要做什么 view.getSettings().setAppCacheEnabled(true)

我想表现出来

通过Android emulator中的WebView访问网站,但我没有看到web 站点,并且在页面的位置标记下只能看到空白

我可以看到其他网站,如www.google.com

我需要为google place页面启用更多设置吗

舱单中的权限

<uses-permission android:name="android.permission.INTERNET" />
你需要做什么

view.getSettings().setAppCacheEnabled(true);
view.getSettings().setDomStorageEnabled(true);
在设置对象上。这为我解决了问题

view.getSettings().setAppCacheEnabled(true);
view.getSettings().setDomStorageEnabled(true);