I have a string resource file, which I want to pull strings from and I want one of the strings to have some superscript in it.
From http://developer.android.com/guide/topics/resources/string-resource.html it looks like the supported tags include <b>
, <i>
, and <u>
. I'm curious if it should work for other related tags, such as <sup>
... if so then my problem is solved.
Testing the above should be easy enough, I'm just looking for a deeper understanding, to see if everything is processed similar to Subscript and Superscript a String in Android or if there is extra processing that happens when pulling the strings from the resource string file.