List of usage examples for android.support.v4.content FileProvider FileProvider
FileProvider
From source file:org.physical_web.physicalweb.BluetoothSite.java
private void openInChrome(File file) { Intent intent = new Intent(Intent.ACTION_VIEW); Uri contentUri = new FileProvider().getUriForFile(activity, "org.physical_web.fileprovider", file); activity.grantUriPermission("com.android.chrome", contentUri, Intent.FLAG_GRANT_READ_URI_PERMISSION); intent.setDataAndType(contentUri, "text/html"); intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); activity.startActivity(intent);/*from w w w.j a va 2s . co m*/ }