Example usage for android.support.v4.content FileProvider FileProvider

List of usage examples for android.support.v4.content FileProvider FileProvider

Introduction

In this page you can find the example usage for android.support.v4.content FileProvider FileProvider.

Prototype

FileProvider

Source Link

Usage

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*/
}