RecyclerView vs. ListView

前端 未结 16 1737
名媛妹妹
名媛妹妹 2020-11-22 06:07

From android developer (Creating Lists and Cards):

The RecyclerView widget is a more advanced and flexible version of ListView.

<
16条回答
  •  遇见更好的自我
    2020-11-22 06:11

    The RecyclerView is a new ViewGroup that is prepared to render any adapter-based view in a similar way. It is supossed to be the successor of ListView and GridView, and it can be found in the latest support-v7 version. The RecyclerView has been developed with extensibility in mind, so it is possible to create any kind of layout you can think of, but not without a little pain-in-the-ass dose.

    Answer taken from Antonio leiva

     compile 'com.android.support:recyclerview-v7:27.0.0'
    

    RecyclerView is indeed a powerful view than ListView . For more details you can visit This page.

提交回复
热议问题