private void makeWorldReadableAndOpenFile(File file) {
   file.setReadable(true, false);
   Intent intent = new Intent();
   intent.setAction(Intent.ACTION_VIEW);
   intent.setDataAndType(Uri.fromFile(file), item.getContentType());
   startActivity(
       Intent.createChooser(intent, getText(R.string.example_loading_file_chooser_title)));
 }