Horizontal ListView in Android?

后端 未结 19 952
深忆病人
深忆病人 2020-11-22 03:54

Is it possible to make the ListView horizontally? I have done this using a gallery view, but the selected item comes to the center of the screen automatically.

19条回答
  •  终归单人心
    2020-11-22 04:18

    You can use RecyclerView in the support library. RecyclerView is a generalized version of ListView that supports:

    • A layout manager for positioning items
    • Default animations for common item operations

    Android Recycler View Docs

提交回复
热议问题