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.
Asked
Active
Viewed 304 times
1 Answers
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