show the filename at PDF Viewer earlier

This commit is contained in:
tibbi
2022-06-11 22:23:50 +02:00
parent b9c3913949
commit 60343d2189

View File

@ -41,6 +41,7 @@ class PDFViewerActivity : SimpleActivity() {
if (intent.extras?.containsKey(REAL_FILE_PATH) == true) { if (intent.extras?.containsKey(REAL_FILE_PATH) == true) {
realFilePath = intent.extras?.get(REAL_FILE_PATH)?.toString() ?: "" realFilePath = intent.extras?.get(REAL_FILE_PATH)?.toString() ?: ""
supportActionBar?.title = realFilePath.getFilenameFromPath()
} }
checkIntent() checkIntent()
@ -91,11 +92,9 @@ class PDFViewerActivity : SimpleActivity() {
showSystemUI(true) showSystemUI(true)
pdf_viewer_wrapper.onGlobalLayout { val filename = getFilenameFromUri(uri)
val filename = getFilenameFromUri(uri) if (filename.isNotEmpty()) {
if (filename.isNotEmpty()) { supportActionBar?.title = filename
supportActionBar?.title = filename
}
} }
} }