0

Click here to view the image

Hi i want to display the horizontal recycler view with the images below the text view inside an expandable listview as shown in the image,how can i achieve this please help me,thanks in advance.

1 Answers1

0

You can use Horizontal RecyeclerView & Specify LayoutManager to be Horizantal

LinearLayoutManager layoutManager
    = new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);

RecyclerView HorizontalRV = (RecyclerView) findViewById(R.id.recyclerViewId);
HorizontalRV.setLayoutManager(layoutManager);
Amey Jahagirdar
  • 455
  • 1
  • 4
  • 14