getView()
is the main part of your adapter. It returns View
that will be displayed as your list/grid/gallary/any view that use adapter item. It triggers when you scroll the view(list for example).
So the first thing you should do its to create your custom adapter. You may extend it from BaseAdapter
. Then you need to create some data to display (or pass it to adapter from out side - its better solution).
After that override getView()
method and make sure to return your custom View there. In your case it should be a Layout
with ImageView
and TextView
(and dont forget to fill them).
You can learn more from :
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…