【Android】打开本地的html文件

网上好多说法 但实际上说到点上的没有 不想写太长 直接进入正题

【Android】打开本地的html文件
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setDataAndType(Uri.fromFile(htmlPath), "text/html");
if (intent.resolveActivity(getPackageManager()) != null) {
    startActivity(intent);
} else {
    startActivity(Intent.createChooser(intent, ""));  // 这个有时候不起作用 不知道为什么……
}
【Android】打开本地的html文件

不加

【Android】打开本地的html文件
intent.addCategory(Intent.CATEGORY_BROWSABLE);
【Android】打开本地的html文件

因为可能会有ActivityNotFoundException

不加

【Android】打开本地的html文件
intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity"); 
或者
intent.setComponent(new ComponentName("com.android.browser", "com.android.browser.BrowserActivity"));
【Android】打开本地的html文件

因为可能没有default browser。

如果html path是在一个private的路径下, 就需要用自己写一个content provider来用content://com.android.htmlfileprovider/+file absolution path来访问。具体实现参照 http://blog.csdn.net/wen0006/article/details/6224979

【完】

【Android】打开本地的html文件,布布扣,bubuko.com

【Android】打开本地的html文件

上一篇:WPF: 旋转Thumb后,DragDelta移动距离出错的解决


下一篇:分享45个android实例源码,很好很强大.收藏吧!!!