I want a direct path to the assets folder so I can open a PDF that is stored there. So I can pass it as a parameter in this Intent:
Intent i = new Intent(this, SecondMainActivity.class);
i.putExtra(PdfViewerActivity.EXTRA_PDFFILENAME, "path_to_assets_folder");
startActivity(i);