adding text below image in coverflow in android
I am developing an android application Tft.
I had downloaded coverflow example from this URL: Android Coverflow Widget
I want开发者_JAVA百科 to place text below all the image in that list. How can i do this?
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())
精彩评论