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(Int
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);