From 60430553358c6037dcf06d252686385dbf1b581f Mon Sep 17 00:00:00 2001 From: Joe Blough Date: Mon, 5 Sep 2011 19:39:05 -0400 Subject: [PATCH] Used more generic derived class name example --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index 0a52362..56d9e13 100644 --- a/README.txt +++ b/README.txt @@ -31,7 +31,7 @@ Quickstart incorporating a PDF viewing activity into your project: public int getPdfPageNumberEditField() { return R.id.pagenum_edit; } 6) Invoke your PdfViewActivity derived with the following code: - Intent intent = new Intent(this, TipPdfViewerActivity.class); + Intent intent = new Intent(this, YourPdfViewerActivity.class); intent.putExtra(PdfViewerActivity.EXTRA_PDFFILENAME, "PATH TO PDF GOES HERE"); startActivity(intent);