Search code examples
androidandroid-layoutandroid-cardviewhorizontalscrollview

many CardView inside a HorizontalScrollView


enter image description here

I want make screen like that. May be It must use HorizontalScrollView and CardView.

enter image description here

I make here using CardView. But It needs more CardView.

I try that, may be HorizontalScrolView can put only 1 CardView.

In HorizontalScrollView, How to put CardView more?

I'm sorry I'm not fluent in English.


Solution

  • Use Recycler view instead

     mRecyclerView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, true));
    

    and add more cards using adapter