delay updating media adapter a bit
This commit is contained in:
parent
1a3ddab3ca
commit
2a1484f28e
|
@ -259,10 +259,12 @@ class MediaAdapter(activity: BaseSimpleActivity, var media: MutableList<Medium>,
|
|||
fun updateMedia(newMedia: ArrayList<Medium>) {
|
||||
if (newMedia.hashCode() != currentMediaHash) {
|
||||
currentMediaHash = newMedia.hashCode()
|
||||
media = newMedia.clone() as ArrayList<Medium>
|
||||
enableInstantLoad()
|
||||
notifyDataSetChanged()
|
||||
finishActMode()
|
||||
Handler().postDelayed({
|
||||
media = newMedia.clone() as ArrayList<Medium>
|
||||
enableInstantLoad()
|
||||
notifyDataSetChanged()
|
||||
finishActMode()
|
||||
}, 100L)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue