I have made an App with a Webview but it is slow when it download the website.
Is it possible to speed it up?
The website I show come from a RSS feed.
Is the problem that the remote site is slow to serve the RSS feed?
Is the problem that the device's internet connection is too slow?
There's not really much you could do about either i think.
The web page is an RSS feed - so it's dynamic content not static.
How often does that content change?
If it changes say once a day AND the slowdown in your program is because the remote site is slow to produce the feed then you could probably set up a script that once a day fetches the feed from the remote site and caches it.
Your program could request the feed from the cached version which may be quicker than the remote site dynamically generating it each time it is requested.
You'd need a web hosting setup with PHP support and the ability to create the local cached copy of the feed.
But if the feed is updated at unknown intervals and your application must have the very latest version of the feed then the caching solution is no good to you.
Martin.