怎样用RecyclerView制作这样的视图?

时间:2017-05-03 06:23:34

标签: android android-layout android-recyclerview

我希望RecyclerView看起来像这样:

enter image description here

我该怎么做?

3 个答案:

答案 0 :(得分:1)

与GridLayoutManager一起使用,例如:

private RecyclerView.LayoutManager mLayoutManager;
mLayoutManager = new GridLayoutManager(mContext, 10);
holder.recycler_viewGv.setLayoutManager(mLayoutManager);

并尝试使用此链接突出显示Highlighting center item

答案 1 :(得分:1)

我建议您尝试使用此方法并根据需要进行更改

compile 'com.github.gastricspark:scrolldatepicker:0.0.1'

https://github.com/GastricSpark/ScrollDatePicker

https://github.com/hrules6872/HorizontalNumberPicker

<com.harrywhewell.scrolldatepicker.DayScrollDatePicker
    android:id="@+id/day_date_picker"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

enter image description here

答案 2 :(得分:0)

这不是您想要的,但可能会给您一些提示。 将RecyclerView与水平布局管理器一起使用。 修改你的适应课程      在onBindViewHolder中,根据位置

更改文本视图大小
      if(position == mid of list){
       //Increase the text size 
      }else{
      //set the normal size to text view 
      }

...