Guest User

Untitled

a guest
Jan 18th, 2018
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. android:rotation="120" (Then any angle you want positive or negative)
  2.  
  3. TextView textView = findViewById(R.id.textView);
  4. ImageView imageView = findViewById(R.id.imageView);
  5.  
  6. textView.setRotation(120);
  7. imageView.setRotation(120);
  8.  
  9. textView.setRotation(-120);
  10. imageView.setRotation(-120);
Add Comment
Please, Sign In to add comment