2

I am developing an android application Tft.

I had downloaded coverflow example from this URL: Android Coverflow Widget

I want to place text below all the image in that list. How can i do this?

Blundell
  • 75,855
  • 30
  • 208
  • 233
Tushar
  • 5,907
  • 15
  • 49
  • 81

1 Answers1

1

I was also facing the same problem with coverflow widget.

After some research, came up with a solution of using canvas.drawText() method.

Add canvas.drawText(String, origin-x, origin-y, paint) in the method where you draw the reflected image.

eg: canvas.drawText("helloo", 10, 10, new Paint())

Clive
  • 36,918
  • 8
  • 87
  • 113
v1986
  • 21
  • 3