我是Android开发的菜鸟,我试图在webview中显示rss feed。它们显示为纯文本,并显示html标记以及Feed详细信息。我试过切换用户代理无济于事。是否可以使用正则表达式以干净/正确的html格式显示Feed?任何帮助是极大的赞赏。
我如何加载我的网页视图
try{
newsfeed.loadUrl("http://feeds.feedburner.com/GoldMoneyGoldResearch");
}catch (Exception e){
e.printStackTrace();
}
是这样的吗?我如何实现这种效果?
try{
newsfeed.loadUrl("http://feeds.feedburner.com/GoldMoneyGoldResearch").replaceAll("<[^>]*>", "");
}catch (Exception e){
e.printStackTrace();
}
修改
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_darn);
newsfeed = (WebView) findViewById(R.id.webView1);
try{
String content = newsfeed.loadUrl("http://feeds.feedburner.com/GoldMoneyGoldResearch").toString();//<--trying to parse rss feed to string
newsfeed.loadData("<html>" + content + "</html>", "text/html", "utf-8");
}catch (Exception e){
e.printStackTrace();
}
}