opening local html file with Android Browser

2020-02-06 05:37发布

i'm trying to open a local html file using the default browser using the following code:

Uri uri = Uri.fromFile(file);
Intent browserIntent = new Intent(Intent.ACTION_VIEW).setData(uri);
startActivity(browserIntent);

but i'm getting the following exception:

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=file:///sdcard/SolveDroid/solution.html }

i'm confused - should i create an activity to hande the web beowser? isn't it supposed to just call its activity?

please advise :)

UPDATE: the same code works if i pass a URL like so: Uri uri = Uri.parse("http://www.metalist.co.il");

3条回答
手持菜刀,她持情操
2楼-- · 2020-02-06 06:04
    Uri uri = Uri.fromFile(file);
    Intent browserIntent = new Intent(Intent.ACTION_VIEW);
    browserIntent.setClassName("com.android.browser", "com.android.browser.BrowserActivity");
    browserIntent.setData(uri);
    startActivity(browserIntent);
查看更多
祖国的老花朵
3楼-- · 2020-02-06 06:06

I found an answer for this problem... just needed to add

browserIntent.setClassName("com.android.browser", "com.android.browser.BrowserActivity");

i used it with the "file://" uri by using Uri.fromfile(file) and it works (Android v.2.2.1)

查看更多
smile是对你的礼貌
4楼-- · 2020-02-06 06:25

try this

Intent in = new Intent(Intent.ACTION_VIEW);
            File f=new File("/sdcard/html.html");
            in.setDataAndType(Uri.fromFile(f), "text/html");
            startActivity(in);
查看更多
登录 后发表回答