Home > Enterprise >  smooth textview rotation with specified duration in android
smooth textview rotation with specified duration in android

Time:11-26

I am a beginner Android developer

I want to rotate a textview

Please write different examples of doing this

CodePudding user response:

you can use this code

text_view.animate().rotation(360.0f).setDuration(1000);
  • Related