Is there any way to enable scrollbars for RecyclerView in code?

前端 未结 6 1461
故里飘歌
故里飘歌 2020-12-23 08:36

As we saw, RecyclerView is more effective than ListView, so I prefer to use it in my project. But recently I have a trouble when put it in my custom ViewGroup. RecyclerView

6条回答
  •  猫巷女王i
    2020-12-23 09:39

    I would prefer to use ContextThemeWrapper for that.

    First define in Style.xml:

    
    

    And then whenever you initialize your RecyclerView use ContextThemeWrapper:

    RecyclerView recyclerView = new RecyclerView(new ContextThemeWrapper(context, R.style.ScrollbarRecyclerView));
    

提交回复
热议问题