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
1 changed files with 4 additions and 5 deletions

View File

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