Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android

Michael McKenna
Michael McKenna
3,451 Points

How do I make a superscript in Android Studio?

I have a button that says "What is the derivative of x^2?" and I want it to have a "2" superscript so it doesn't look ugly with the carrot symbol.

1 Answer

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Michael;

You can try something along the lines of:

((TextView)findViewById(R.id.text)).setText(Html.fromHtml("X<sup>2</sup>"));

Ken