you can also refer my answer in this link
Simply use SpannableString that will solve your problem.
SpannableString styledString = new SpannableString("9-10th STD");
styledString.setSpan(new SuperscriptSpan(), 4, 6, 0);
textView.setText(styledString);
and put your android:textAllCaps="false"