listview - adding text below image in coverflow in android -


I am developing an Android Application TTT.

I downloaded an example of a coverflow from this URL:

I want to keep all the images in the list below. How can I do this?

I was also facing the same problem with the coverflow widget.

After some research, came with a solution to use the canvas.drawText () method.

Add canvas.drawText (string, base-x, original

example: canvas.drawText ("helloo", 10, 10, new paint) )

Comments