load the initially visible fullscreen image with the highest priority

This commit is contained in:
tibbi 2019-05-13 22:17:37 +02:00
parent 1e697e75d6
commit 4c8b7a3c84
1 changed files with 2 additions and 0 deletions

View File

@ -359,9 +359,11 @@ class PhotoFragment : ViewPagerFragment() {
}
private fun loadBitmap(addZoomableView: Boolean = true) {
val priority = if (mIsFragmentVisible) Priority.IMMEDIATE else Priority.NORMAL
val options = RequestOptions()
.signature(mMedium.path.getFileSignature())
.format(DecodeFormat.PREFER_ARGB_8888)
.priority(priority)
.diskCacheStrategy(DiskCacheStrategy.RESOURCE)
.fitCenter()