Search code examples
androidrssandroid-webviewrss-reader

Open rss item in webview


I'm making android rss reader app that get rss ,parse then show items in listView Now with my code when item clicked it opens the default browser show rss

I want to show that in another activity in webview

So how can I do it?

Here is my code

public void onItemClick(AdapterView<?> parent, View view, int pos, long id) {     Intent i = new Intent(Intent.ACTION_VIEW);
    i.setData(Uri.parse(listItems.get(pos).getLink()))  ;

    activity.startActivity(i);

}

Solution

  • Write another activity with webview and pass the url you need to open in the intent data before you start the new activity.

    The new activity will read the url from the intent and it should then load it in the webview

    What kind of help do you need to get this done ?