Вы можете использовать библиотеку ниже, для этого я уже использовал эту библиотеку для того же
https://github.com/Azoft/CarouselLayoutManager
Добавить CarouselLayoutManager и установить утилизацию смотреть недвижимость согласно ниже
CarouselLayoutManager layoutManager = new CarouselLayoutManager(CarouselLayoutManager.HORIZONTAL, true);
layoutManager.setPostLayoutListener(new CarouselZoomPostLayoutListener());
yourAdapter = new YourAdapter(arrayList, context);
binding.rvGame.setLayoutManager(layoutManager);
binding.rvGame.setHasFixedSize(true);
binding.rvGame.setAdapter(yourAdapter);
binding.rvGame.addOnScrollListener(new CenterScrollListener());
Я надеюсь, что это может помочь вам!
Спасибо.