Playground Example
Start here to customize the behavior of PdfActivity.
/* * Copyright © 2020-2025 PSPDFKit GmbH. All rights reserved. * * The PSPDFKit Sample applications are licensed with a modified BSD license. * Please see License for details. This notice may not be removed from this file. */package com.pspdfkit.catalog.examples.kotlin
import android.content.Contextimport android.net.Uriimport android.util.Logimport android.view.Menuimport android.view.MenuItemimport android.widget.Toastimport com.pspdfkit.catalog.Rimport com.pspdfkit.catalog.SdkExampleimport com.pspdfkit.catalog.SdkExample.Companion.TAGimport com.pspdfkit.catalog.tasks.ExtractAssetTaskimport com.pspdfkit.configuration.activity.PdfActivityConfigurationimport com.pspdfkit.document.PdfDocumentimport com.pspdfkit.ui.PdfActivityimport com.pspdfkit.ui.PdfActivityIntentBuilder
/** * Playground example that opens an activity extending the [PdfActivity] class. */class PlaygroundExample(context: Context) : SdkExample(context, R.string.playgroundExampleTitle, R.string.playgroundExampleDescription) {
override fun launchExample(context: Context, configuration: PdfActivityConfiguration.Builder) { // We use a custom utility class to extract the example document from the assets. ExtractAssetTask.extract(WELCOME_DOC, title, context) { documentFile -> // To start the `CustomLayoutActivity` create a launch intent using the builder. val intent = PdfActivityIntentBuilder.fromUri(context, Uri.fromFile(documentFile)) .configuration(configuration.build()) .activityClass(PlaygroundActivity::class) .build() context.startActivity(intent) } }}
/** * Playground activity that provides an options menu accessible via the overflow menu (the three dots) * with a customizable button action, see [menuItemClicked]; and a callback when the document is successfully * loaded, see [onDocumentLoaded]. */class PlaygroundActivity : PdfActivity() {
override fun onCreateOptionsMenu(menu: Menu): Boolean { super.onCreateOptionsMenu(menu) menu.add(0, CUSTOM_MENU_ITEM_ID, 0, "Custom Menu Item") return true }
override fun onOptionsItemSelected(item: MenuItem): Boolean { return if (item.itemId == CUSTOM_MENU_ITEM_ID) { menuItemClicked() true } else { super.onOptionsItemSelected(item) } }
override fun onDocumentLoaded(document: PdfDocument) { super.onDocumentLoaded(document) Log.d(TAG, "Document loaded.") // Do your magic here... }
private fun menuItemClicked() { Toast.makeText(this, "Menu item clicked!", Toast.LENGTH_SHORT).show() }
companion object { private const val CUSTOM_MENU_ITEM_ID = 1 }}This code sample is an example that illustrates how to use our SDK. Please adapt it to your specific use case.