MyButton.setText(Html.fromHtml("* <small><sup>^</sup></small>"));
With Eclipse :
With Android Studio :
It is the same if i use an other method :
SpannableStringBuilder cs = new SpannableStringBuilder("* ^");
cs.setSpan(new SuperscriptSpan(), 1, 4, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
cs.setSpan(new RelativeSizeSpan((float) 0.50), 1, 4, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
MyButton.setText(cs);
Muy buid.graddle configuration is :
android {
compileSdkVersion 18
buildToolsVersion "21.1.2"
Thanks for your help !