来自HTML的EditText无法将&转换为&

时间:2018-07-03 05:44:35

标签: android webview

我有一个EditText,它显示HTML内容,但是当我尝试将&amp显示为&时,它不起作用。它仍在显示&amp。

我怎么做-

description.setText(Html.fromHtml("Locator & Navigator ( Location )"));

1 个答案:

答案 0 :(得分:1)

尝试一下

String value = "some value & some other value";
description.setText(Html.fromHtml(value.replaceAll("&","amp;")));

输出

enter image description here