Used more generic derived class name example

This commit is contained in:
Joe Blough 2011-09-05 19:39:05 -04:00
parent 36f380caac
commit 6043055335
1 changed files with 1 additions and 1 deletions

View File

@ -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);