I am developing an app where there is a recyclerview with some cards and would like to create a zoom in effect when the user touches the card and zoom out when release the touch. The previous and next cards should respect the size of the card as it expands, not behind or forward
I would like to create something similar to this layout manager, but by touching the screen instead of scrolling.
//RecyclerView
recyclerView = view.findViewById(R.id.recyclerView)
recyclerView.setHasFixedSize(false)
recyclerView.layoutManager = CenterZoomLayoutManager(activity, LinearLayoutManager.VERTICAL, false)
How to create this effect? Thanks in advance.