Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to send intent to browser to open local file. I wish to use default browser to open this file.

if(file.exists()){
  Log.d(TAG, "file.exists");
  Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromFile(file));
  context.startActivity(intent);
}

But it throws me and exeption

08-10 13:27:58.993: ERROR/AndroidRuntime(28453): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=file:///sdcard/release_notes.htm }

If I use following intent browser opens google.com as expected

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://google.com"));

Also when I write the file url (file:///sdcard/release_notes.htm) to browser address bar it opens it as expected.

share|improve this question

5 Answers

up vote 2 down vote accepted

You need to add browsable category in the intent.

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromFile(file));
intent.addCategory(Intent.CATEGORY_BROWSABLE);
startActivity(intent);
share|improve this answer
Doesn't seem to help 08-10 14:03:48.414: ERROR/AndroidRuntime(29612): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW cat=[android.intent.category.BROWSABLE] dat=file:///sdcard/release_notes.htm } – roose Aug 10 '11 at 11:15
hmm, weird, I don't seem to have any problems with this on my phone :( - double check that your sdcard is not mounted to a computer when you try this. – Zharf Aug 10 '11 at 11:33
maybe you could try adding the browser classname explicitly to the intent: intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity"); – Zharf Aug 10 '11 at 11:39
I don't think it's accessibility issue because the browser opens it if I write the url manually to address bar. Also I think file.exists() should return false if it could not access the file. And shouldn't it throw a different exception...? Could there be different behavior between devices? I'm running desire hd – roose Aug 10 '11 at 11:45
There shouldn't be any difference between devices, it should just work. I'm currently unable to test it on a desire hd, might get my hands on one tomorrow... – Zharf Aug 10 '11 at 11:58
show 2 more comments

The browser is started only for HTML and other compatible files. this should work:

Intent intent = new Intent(ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "text/html");
share|improve this answer
It works also. thanks! – roose Aug 16 '11 at 6:41

This is what's working for me. I took the mime type directly from the Manifest.xml of the Android's default browser. Apparently the text/html mime is only for http(s) and inline schemes.

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addCategory(Intent.CATEGORY_BROWSABLE);
intent.setDataAndType(Uri.fromFile(filePath), "application/x-webarchive-xml");
startActivity(intent);

Not sure if it works in every android/phone/browser combination but it's the only way I could get it to work.

Edit: Tested with chrome and doesn't work. Also doesn't work with my 2.3.3 device. Seems to work with the default browser in Android 4.0.

share|improve this answer

Maybe this works:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "text/html");
startActivity(intent);
share|improve this answer

The problem is that the new activity has no access to the html page inside your app since it is a different app and it has no permissions to do so.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.