添加指向从xml文件解析的内容的链接

时间:2012-08-04 11:14:11

标签: android xml-parsing

我正在创建一个新闻应用程序。我已成功解析(使用sax)文件并在列表视图中添加了标题。我想分别添加标题的链接。因此,一旦点击标题,它将打开相应标题的详细新闻

如何添加标题链接。?

这是我使用的xml file ..

1 个答案:

答案 0 :(得分:2)

只需创建自定义适配器。

参考此链接,

How to change color and font on ListView

textview设置为代码下面的链接使用,

textView.setText(Html.fromHtml(
        "<b>text3:</b>  Text with a " +
        "<a href=\"http://www.google.com\">link</a> " +
        "created in the Java source code using HTML."));

textView.setMovementMethod(LinkMovementMethod.getInstance());