You can use the recycler view and set it to scroll horizontally instead of using any custom library.
RecyclerView recycler= (RecyclerView) itemView.findViewById(R.id.recycler); LinearLayoutManager llManager = new LinearLayoutManager(mcontext, LinearLayoutManager.HORIZONTAL, false); recycler.setLayoutManager(llManager);
Then, to centralize the location of your desire, see Scrolling Recyclerview . And customize it according to your requirement
Beena
source share