You need to create a scrolling list for the application, like this:

Need with

Can I make it with a regular ListView ?

CardView Recyclerview , or CardView used CardView ?

Tell me the best way to implement such a list.

  • You can do it using ListView or RecyclerView - these are two list display widgets. The CardView widget does not display lists at all, it is a decorative widget that draws a "card" and is not observed on your screenshot. - pavlofff

1 answer 1

It uses RecyclerView or ListView. Just made custom adapter. In which two TextView and ImageView.

  • I started to do it through ListView, the question remains, can you know the answer, how to stretch the image over the entire ImageView area? The image in high resolution, but for some reason it does not occupy the entire space allocated for ImageView, as in the example - Opimand
  • one
    @Opimand in ImageView in xml add android: scaleType = "fitXY", or android: scaleType = "centerCrop", it's better to use RecyclerView, not ListView. - Lucky_girl