How to implement zoom feature for RecyclerView?
I need to implement a RecyclerView using GridLayoutManager to represent seats of a stadium. On item (seat) selection, some information pops up and finally the user can book it. The problem is, high number of seats per row on a small screen make it difficult for the user to select an item. So, I want to implement a zoom feature where user can zoom in a part of the RecyclerView to make it easier to click on an item. How's id done?