1

我在我的android应用程序中使用json,实际上在列表视图中它也在我的文本中显示了html标签,我怎样才能只显示文本避免html标签

Mainactivity.java

public class MainActivity extends ListActivity implements FetchDataListener
{
    private ProgressDialog dialog;


    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        //setContentView(R.layout.activity_list_item);   
        initView();
    }



    private void initView()
    {
        // show progress dialog
        dialog = ProgressDialog.show(this, "", "Loading...");
        String url = "http://floating-wildwood-1154.herokuapp.com/posts.json";
        FetchDataTask task = new FetchDataTask(this);
        task.execute(url);
    }

    @Override
    public void onFetchComplete(List<Application> data)
    {
        // dismiss the progress dialog
        if ( dialog != null )
            dialog.dismiss();
        // create new adapter
        ApplicationAdapter adapter = new ApplicationAdapter(this, data);
        // set the adapter to list
        setListAdapter(adapter);
    }

    @Override
    public void onFetchFailure(String msg)
    {
        // dismiss the progress dialog
        if ( dialog != null )
            dialog.dismiss();
        // show failure message
        Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
    }
}

应用适配器.java

public class ApplicationAdapter extends ArrayAdapter<Application>
{
    private List<Application> items;

    public ApplicationAdapter(Context context, List<Application> items)
    {
        super(context, R.layout.app_custom_list, items);
        this.items = items;
    }

    @Override
    public int getCount()
    {
        return items.size();
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent)
    {
        View v = convertView;
        if ( v == null )
        {
            LayoutInflater li = LayoutInflater.from(getContext());
            v = li.inflate(R.layout.app_custom_list, null);
        }
        Application app = items.get(position);
        if ( app != null )
        {
            TextView titleText = (TextView) v.findViewById(R.id.titleTxt);
            if ( titleText != null )
                titleText.setText(app.getContent());
        }
        return v;
    }
}

在我的列表视图中,它的显示如下

你好<br>

朋友们'<br>'

古德姆'<br>'

它用 html 标签显示,我只想要文本数据,文本必须显示在我的列表视图中。

4

4 回答 4

11

使用Html.fromHtml在 TextView.Example 中显示带有 html 标签的文本

String str_without_html=Html.fromHtml("back to work<br>").toString();

于 2013-05-24T05:04:02.273 回答
1

解决方案通常需要正则表达式(这是一种容易出错的方法)或安装第三方库,例如 jsoup 或 jericho。Android 设备上更好的解决方案就是使用 Html.fromHtml() 函数:

代码

public String stripHtml(String html) {
    return Html.fromHtml(html).toString();
}

这使用 Android 的内置 Html 解析器来构建输入 html 的 Spanned 表示,而无需任何 html 标记。然后通过将输出转换回字符串来剥离“Span”标记。

于 2013-05-24T05:08:51.107 回答
1

只需删除<br>标签

url =  url.replaceAll("<br>", "");
于 2013-05-24T05:05:52.520 回答
1

您可以使用

String s = value.replaceAll("<br>","");
于 2013-05-24T05:06:07.313 回答