如何将 RSS 阅读器中的 url 传递给 webview

发布于 2024-11-09 05:07:32 字数 338 浏览 0 评论 0原文

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

这显示了当前RSS提要的列表,但是我怎样才能使其可点击,以便当您选择提要时它会在webview,我知道如何设置 webview 我遇到的问题是如何从 rss 中获取 url 以及将代码放在哪里。

提前致谢

I have created a simple rss reader from this tutorial, http://automateddeveloper.blogspot.com/2010/08/android-rss-reader-tutorial.html

This shows a list of current rss feeds, but how can I make this clickable so that when you select a feed it opens in a webview, I know how to setup the webview the problem I am having is how to grab the url from the rss and where to put the code.

Thanks in Advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉默的熊 2024-11-16 05:07:32
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);
            }
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);
            }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文