Skip to content

Instantly share code, notes, and snippets.

@vschmidt94
Created May 24, 2015 14:14
Show Gist options
  • Select an option

  • Save vschmidt94/eb8a52b72d4f72240c43 to your computer and use it in GitHub Desktop.

Select an option

Save vschmidt94/eb8a52b72d4f72240c43 to your computer and use it in GitHub Desktop.
Using Google Doc Viewer to Open a PDF
public void goToRepublicRecyle(View view) {
showPDF("https://docs.google.com/viewer?url=http://site.republicservices.com/site/corvallis-or/en/documents/corvallisrecycledepot.pdf");
}
public void goToRepublicCurbside(View view) {
showPDF("https://docs.google.com/viewer?url=http://site.republicservices.com/site/corvallis-or/en/documents/detailedrecyclingguide.pdf");
}
private void showPDF(String url) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(browserIntent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment