Android: HorizontalScrollView inside ScrollView

前端 未结 6 1959
忘掉有多难
忘掉有多难 2021-02-05 12:46

I have multiple HorizontalScrollViews inside a ScrollView. Horizontal scroll isn\'t smooth at all. I have to scroll almost perfectly horizontal

6条回答
  •  轮回少年
    2021-02-05 13:00

    You can use Recycler view with Staggered layout manager

     StaggeredGridLayoutManager  staggeredGridLayoutManager = new StaggeredGridLayoutManager(4, StaggeredGridLayoutManager.HORIZONTAL);
    
     RecyclerViewAdapter recyclerViewAdapter = newRecyclerViewAdapter(this);
    
     recyclerView.setAdapter(recyclerViewAdapter); //Don't miss to initialize your adapter
    

提交回复
热议问题