RecyclerView vs. ListView

前端 未结 16 1894
名媛妹妹
名媛妹妹 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:26

    Major advantage :

    ViewHolder is not available by default in ListView. We will be creating explicitly inside the getView(). RecyclerView has inbuilt Viewholder.

提交回复
热议问题