mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 20:48:00 +01:00
update the current portrait photo on click
This commit is contained in:
parent
420a6459e7
commit
687b8697c8
1 changed files with 9 additions and 0 deletions
|
@ -35,6 +35,14 @@ class PortraitPhotosAdapter(val context: Context, val photos: ArrayList<String>,
|
|||
|
||||
fun getCurrentPhoto() = currentSelection
|
||||
|
||||
private fun setCurrentPhoto(position: Int) {
|
||||
val newPhoto = photos.getOrNull(position) ?: return
|
||||
if (currentSelection != newPhoto) {
|
||||
currentSelection = newPhoto
|
||||
notifyDataSetChanged()
|
||||
}
|
||||
}
|
||||
|
||||
inner class ViewHolder(view: View) : RecyclerView.ViewHolder(view) {
|
||||
fun bindView(photo: String, position: Int): View {
|
||||
itemView.apply {
|
||||
|
@ -64,6 +72,7 @@ class PortraitPhotosAdapter(val context: Context, val photos: ArrayList<String>,
|
|||
if (photo.isNotEmpty()) {
|
||||
setOnClickListener {
|
||||
itemClick(position, x.toInt())
|
||||
setCurrentPhoto(position)
|
||||
}
|
||||
} else {
|
||||
setOnClickListener(null)
|
||||
|
|
Loading…
Reference in a new issue