admin 管理员组文章数量: 887021
满意答案
代码 如下:
Intent intent=new Intent();
intent.setAction("android .intent.action.VIEW");
Uri CONTENT_URI_BROWSERS = Uri.parse("content://com.android.htmlfileprovider/sdcard/123.html");
intent.setData(CONTENT_URI_BROWSERS);
intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity");
startActivity(intent);
假设要打开的本地html文件 存放在如下路径 /sdcard/123.html
如果出现错误:
Unable to find explicit activity class {
com.google.android.browser/com.android.browser.BrowserActivity};
have you declared this activity in your AndroidManifest.xml?
用
intent.setComponent(new ComponentName("com.android.browser", "com.android.browser.BrowserActivity"));
代替
intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity");
00分享举报
版权声明:本文标题:android 浏览器打开本地html文件,Android浏览器如何打开本地html文件 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1727321905h1101462.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论