on android application on splash screen need set app icon rotating progress bar how can implement that.
can me code ? example
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
Post a Comment