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.
我正在编写一个小型 Android 游戏,并使用 WebView 从打包资源中读取 HTML 文件。
如果打包的 HTML 文件没有引用 Internet 上的任何资源,是否还需要在权限文件中包含 Internet 访问权限?
不,根据文档,只有使用套接字才需要互联网许可。您可以将 HTML 数据读入字符串并使用loadData函数。
不,只要您的内容(html 文件)不需要来自网络的任何内容(如远程图像),访问 file:// 没有互联网权限就应该是安全的。不过需要注意的是:与您在这里询问相比,您自己测试所需的时间要少得多。