在Android中的数据库中发布的Html标签

时间:2018-01-29 08:26:56

标签: android html database sqlite

诸如和标签之类的Html标签将在数据库中发布。

这是图片:  imageBin

以下是代码:

private void onFabClick() {
    if (familyHistoryMap.anySubSelected()) {
        for (Node node : familyHistoryMap.getOptionsList()) {
            if (node.isSelected()) {
                String familyString = node.generateLanguage();
                String toInsert = node.getText() + " : " + familyString;
                toInsert = toInsert.replaceAll(Node.bullet,"");
                toInsert = toInsert.replaceAll(" - ",", ");
                toInsert = toInsert.replaceAll("<br/>","");
                if(StringUtils.right(toInsert,2).equals(", ")){
                 toInsert = toInsert.substring(0,toInsert.length()-2);
                }
                toInsert = toInsert+ ".<br/>";

                insertionList.add(toInsert);

            }
        }
    }

代码toInsert = toInsert + <"./br">正在发布值以及<br>标记如何摆脱这些?

0 个答案:

没有答案