How exactly to implement in Android Progress View? (I mean exactly the view element, which can dynamically change depending on certain parameters in the Activity).

For example:

enter image description here

1 answer 1

  1. Making the markup.
  2. Find the desired item.
  3. Set the animation depending on the parameter of this object.

A progressbar is often used in conjunction with the ObjectAnimator. Example:

ObjectAnimator animator = ObjectAnimator.ofInt(myProgressBar, "progress", level);