I am using a spinner with some text (String) and I would like to write the chemical expression MgCl2 with the number 2 subscripted. How can I do it?
I have seen some posts telling about to use Html.fromHtml() but AndroidStudio says this method is deprecated. You can see my code below.
Spinner spinner1 = (Spinner) findViewById(R.id.spinner1);
List<String> list = new ArrayList<String>();
list.add("MgCl2");
ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item, list);
dataAdapter.setDropDownViewResource(android.R.layout.simple_expandable_list_item_1);
spinner1.setAdapter(dataAdapter);
You can do this directly with a
SpannableString
.Your
ArrayAdapter
can be typed as<CharSequence>
. Any downstreamsetText
calls can take a CharSequence argument (instead of theString
you're using now).Note that
SpannableString
is immutable. For more complex constructions, you may wantSpannableStringBuilder
.Probably, you should be aware of the set of
CharacterStyle
subclasses. They represent all the effects you can apply to aSpanned
of any concrete type.