如何从rss阅读器将URL传递到webview

问题描述

|| 我从本教程http://automateddeveloper.blogspot.com/2010/08/android-RSS-reader-tutorial.html创建了一个简单的RSS阅读器。 这显示了当前RSS供稿的列表,但是如何使它可单击,以便当您选择供稿时在webview中打开它,我知道如何设置webview,我遇到的问题是如何从RSS获取网址以及将代码放在哪里。 提前致谢     

解决方法

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);
            }