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.
我正在尝试找出将几个 html 与 flash 打包的方法,并将其捆绑为 android 项目。而不是创建 webview 并加载 webview
webView.loadUrl("file:///..");
是否可以在平板电脑的本机(外部)浏览器中加载捆绑的文件?
您需要在意图中添加可浏览类别。
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromFile("file:////")); intent.addCategory(Intent.CATEGORY_BROWSABLE); startActivity(intent);
注意:不要硬编码路径使用 Evironment.getExternalEnvironment() 来获取外部 sdcard 的路径