For #2570: Hide 3-dots menu for all library items when in select mode. (#6736)

notifyDataSetChanged to avoid not displayed but created items not being redrawn
staging
Mihai Adrian 5 years ago committed by GitHub
parent 531f7e7a67
commit 4fd3aa8649
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,8 +30,7 @@ open class LibraryPageView(
foregroundColor = context.getColorFromAttr(R.attr.primaryText),
backgroundColor = context.getColorFromAttr(R.attr.foundation)
)
libraryItemsList.setItemViewCacheSize(0)
libraryItemsList.adapter?.notifyItemRangeChanged(0, libraryItemsList.childCount)
libraryItemsList.adapter?.notifyDataSetChanged()
}
protected fun setUiForSelectingMode(
@ -43,8 +42,7 @@ open class LibraryPageView(
foregroundColor = ContextCompat.getColor(context, R.color.white_color),
backgroundColor = context.getColorFromAttr(R.attr.accentHighContrast)
)
libraryItemsList.setItemViewCacheSize(0)
libraryItemsList.adapter?.notifyItemRangeChanged(0, libraryItemsList.childCount)
libraryItemsList.adapter?.notifyDataSetChanged()
}
private fun updateToolbar(title: String?, foregroundColor: Int, backgroundColor: Int) {

Loading…
Cancel
Save