Greetings.
I am writing an android application, my text data is stored in the database, it is processed there by HTML tags, having received this data in my application, I load it into a textview as follows:
question_text.setText(Html.fromHtml(QUESTION_TEXT)); Everything works, however, I have a need to insert a footnote inside the text, in HTML it is put like this:
<sup><acronym title="Текст сноски">[1]</acronym></sup> I registered this code in the text in the database, and the footnote was displayed, but when you hover or click on it, nothing happens. Question: How to correctly write the footnote code in the database so that the android application correctly displays this footnote? Is it possible at all?