I have succeed to add a List View inside of a vertical List View. My Problem is with the horizontal list view. Can somebody explain to me how I should create an horizontal ListView? Should i switch to a Recycler View to create an horizontal List ? Or I stick with a ListView?
Thank you for your help !
Use a RecyclerView with Horizontal LinearLayout as a item view of vertical RecyclerView with Vertical LinearLayoutManager. Yeah if you are creating your views right now from the scratch, always use Recycler View instead of ListView onwards.