android webviews 可以与其他应用程序中的 webviews 共享同一 html url 的 html 本地存储吗
我已经搜索过,如果多个具有访问同一 html5 应用程序的 webview 的本机应用程序可以获得相同的 html5 本地存储,似乎无法实现。作为后续问题,本地存储可以与本地默认浏览器共享吗?
I have searched around an cannot seem to if multiple native apps with webviews accessing the same html5 app can get the same html5 local storage. As a follow-up question, can the local storage be shared with the local default browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,可以使用
AndroidManifest.xml
中的android:sharedUserId
在同一用户名下运行两个程序。但这不是一件常见的事情,可能会让事情变得复杂。Well, it is possible to run two programs under the same user name, using
android:sharedUserId
in theAndroidManifest.xml
. But that is not a common thing to do, could make things complex.