Android 浏览器如何打开本地html文件
2010-09-10 00:37:00 来源:WEB开发网核心提示:用下面的代码就可以实现:Intent intent=new Intent();intent.setAction("android.intent.action.VIEW");Uri CONTENT_URI_BROWSERS = Uri.parse("content://com.android
用下面的代码就可以实现:
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
via:http://blog.csdn.net/JavaTiger427/archive/2010/08/21/5826109.aspx
[]
更多精彩
赞助商链接