I have a very simple loading symbol which I created using ProgressBar
in one of my Android apps. The loading symbol looks like the following:
XML code for the ProgressBar
:
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true" />
I want to add some styling to the ProgressBar
or make it look like the following:
Is it possible to do it? If so, how?
Any example code would be very helpful.