Setting app icon as progress bar in android -


on android application on splash screen need set app icon rotating progress bar how can implement that.

can me code ? example https://www.dropbox.com/s/a8ilgjn6fzxntv2/10529664_833402360077760_131396055_n.jpg?dl=0

the image screenshot of app uses encircled image progress bar . need implement one.

try following code rotation.

imageview rotate_image =(imageview) findviewbyid(r.id.your_image); rotateanimation rotate = new rotateanimation(30, 360, animation.relative_to_self, 0.5f, animation.relative_to_self, 0.5f); rotate.setduration(2500); rotate_image.startanimation(rotate); 

hope helps. thanks


Comments