如何从RSS阅读器传递URL到webview

时间:2011-05-24 08:52:59

标签: java android eclipse rss

我在本教程中创建了一个简单的rss阅读器http://automateddeveloper.blogspot.com/2010/08/android-rss-reader-tutorial.html

这显示了当前RSS订阅源的列表,但是如何使其可点击以便当您选择在webview中打开的订阅源时,我知道如何设置webview我遇到的问题是如何抓取该网址来自rss以及放置代码的位置。

先谢谢

1 个答案:

答案 0 :(得分:0)

public void onItemClick(AdapterView<?> a, View v, int position,
                    long arg3) {
                // TODO Auto-generated method stub
                Intent message = new Intent(Intent.ACTION_VIEW, 
                          Uri.parse(urvariable.get(position)));
                       startActivity(message);
            }