recyclerview inside horizontalscrollview

前端 未结 1 814
心在旅途
心在旅途 2020-12-07 04:40

how can i put vertical recyclerview inside horizontalScrollview ?

when adapter binds data at viewholder, item\'s left margin is increase.

(ex : leftMargin =

相关标签:
1条回答
  • 2020-12-07 05:16

    If what you want is a list of items that scroll horizontally, use LinearLayoutManager with your RecyclerView.

    LinearLayoutManager manager = new LinearLayoutManager(
      this,
      LinearLayoutManager.HORIZONTAL,
      false
    );
    
    0 讨论(0)
提交回复
热议问题