How can I make horizontally scrollable items in a vertical listview?

后端 未结 4 1925
耶瑟儿~
耶瑟儿~ 2021-01-05 13:50

I would like to use horizontall scrolling items in a vertically scrolling Listview.

My naive take on this was to put the contents of the listview items inside a scro

4条回答
  •  清酒与你
    2021-01-05 14:26

    Make ordinary ListView with any adapter you like but design the item Layout something like this:

    
    
    
        
    
            
    
                
    
                
    
            
    
        
    
    
    
    

    You'll have Vertically Scrollable ListView with Horizontally Scrollable items. And the items are scrolled independantly from other items.

提交回复
热议问题