我正在开发一个应用程序,我需要在其中使用一些数学特殊字符。在谷歌中长时间搜索后,我找到了以下解决方案,即如何在 TextView、EditView 或其他 Android UI 元素中放置一些特殊的数学符号。根据上面的链接,如果我使用 textview 意味着它运行良好。但是如何在列表视图中使用以下“HTML.frommHtml()”。我试过但它得到错误......
代码:(使用Textview)
//by using textview
String htmlStringWithMathSymbols = " ∂ ∆ ∏ ∑ = ≠ ≈ ≡";
txtv.setText(Html.fromHtml(htmlStringWithMathSymbols));
如何在 listview 中使用以下“HTML.frommHtml()”。当我为 listview 添加相同的代码时,出现错误...
代码:(使用ListView)
//by using listview
String[] andi={"andi 4","andi 5" , "∂" , "∆","∏"};
ArrayAdapter<String> adp = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, andi);
lv.setAdapter(Html.fromHtml(adp));
在使用 listview 代替 "fromHtml()" 时,它显示错误为"The method fromHtml(String) in the type Html is not applicable for the arguments (ArrayAdapter)"。
那么如何将以下“Html.fromHtml()”代码与 listview 或 spinner 一起使用....