Rendering Problems: java.lang.NullPointerException at android.support.v7.widget.RecyclerView in Android Studio 1.1.0

后端 未结 6 776
忘掉有多难
忘掉有多难 2020-12-31 03:32

I have recently updated android sdk to api 22 and android studio 1.1.0. After that I am getting rendering issues on RecyclerView. Here is what I am getting

          


        
6条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-31 04:20

    You dont need to remove any line, but to add the following line to your code:

    recyclerView.setLayoutManager(new LinearLayoutManager(recyclerView.getContext()));
    

    This way, there is no problem for the Vertical scrolling on the RecyclerView.

    Hope it helps!

提交回复
热议问题