The fastest and most convenient way is to Rotate by Animation
use rotate animation on your regular TextView like so.
rotateAnimation.xml:
Java Code:
TextView text = (TextView)findViewById(R.id.txtview);
text.setText("rotated text here");
RotateAnimation rotate= (RotateAnimation)AnimationUtils.loadAnimation(this,R.anim.rotateAnimation);
text.setAnimation(rotate);