fix #1999, always use white color at the top items of fullscreen view

This commit is contained in:
tibbi 2020-12-05 22:58:49 +01:00
parent ce2a99d9c1
commit 74777a7cb8

View file

@ -87,9 +87,11 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
private var mIgnoredPaths = ArrayList<String>()
override fun onCreate(savedInstanceState: Bundle?) {
useDynamicTheme = false
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_medium)
window.decorView.setBackgroundColor(config.backgroundColor)
top_shadow.layoutParams.height = statusBarHeight + actionBarHeight
checkNotchSupport()
(MediaActivity.mMedia.clone() as ArrayList<ThumbnailItem>).filter { it is Medium }.mapTo(mMediaFiles) { it as Medium }
@ -132,7 +134,7 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
supportActionBar?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
val filename = getCurrentMedium()?.name ?: mPath.getFilenameFromPath()
supportActionBar?.title = Html.fromHtml("<font color=#FFFFFF'>$filename</font>")
supportActionBar?.title = filename
window.statusBarColor = Color.TRANSPARENT
}