How to make a CircleProgress on Xamarin Android?

0

I'm programming in Xamarin.Android and I need a progressbar (or something like) circular that actually shows some progress, I tried to use ProgressBar myself, but it only shows progress horizontally, in circular mode it stays spinning just, does anyone know how I can solve this? It may be from modifying the already existing ProgressBar (I do not handle much of this yet because I am a beginner) or indicate something else.

I've tried to use RadialProgress, but I did not like the "theme" of it (very rounded the progress bar) and also (from what I saw) there is no way to change the color of the text inside it.     

asked by anonymous 16.11.2017 / 16:17

1 answer

1

I have managed to solve it, I used Xamarin Bindings for this, I did not know it very well, but it is very simple and objective. I got this library made in Java Android : link and made .aar it a .dll with Xamarin Bindings (I tried with .jar previously, but it did not work since it only takes classes, .aar packages everything, including layouts and external things that the library depends on). More information here: link

    
21.11.2017 / 02:28