Progressbar android with text inside

前端 未结 3 1343
慢半拍i
慢半拍i 2021-01-06 08:47

I have a circular ProgressBar, I want inside this circular bar, write the progression in percentage (like 60 %, or 70 %..)
How can I do this inside the circ

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-06 09:34

    You could achieve it overriding onDraw inside ProgressBar, and use Canvas.drawText to decide where the text should be positioned . Here you can find the documentation for drwawText:

    x and y are the coordinates of the origin of the text being drawn

提交回复
热议问题