disable eager loading and set serial executor at Subsampling

This commit is contained in:
tibbi 2018-01-28 12:51:38 +01:00
parent a10bb5aa58
commit 5b709d0b70

View file

@ -8,6 +8,7 @@ import android.graphics.Matrix
import android.graphics.drawable.ColorDrawable
import android.media.ExifInterface.*
import android.net.Uri
import android.os.AsyncTask
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
@ -255,6 +256,8 @@ class PhotoFragment : ViewPagerFragment() {
isQuickScaleEnabled = context.config.oneFingerZoom
setImage(ImageSource.uri(medium.path))
orientation = if (orient == -1) SubsamplingScaleImageView.ORIENTATION_USE_EXIF else degreesForRotation(orient)
setEagerLoadingEnabled(false)
setExecutor(AsyncTask.SERIAL_EXECUTOR)
setOnImageEventListener(object : SubsamplingScaleImageView.OnImageEventListener {
override fun onImageLoaded() {
}