• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps webpage to apk file convertor

hi
i need to develop the android app as to convert any webpage into apk file (suppose the google web page should convert to apk file then we use as usual web search engine)

can any one help me.
 
The only way to really do this generically--that is, to have it work with any web page--is to put the URL in the strings.xml file as a string resource, and then launch a WebView, loading the string resource as the URL. This will NOT give a good user experience though, as WebViews are not really meant for full page browsing and there are no controls available for back, forward, etc.. (though you could add these yourself, I suppose). WebViews were intended to be used for quick display of a single web page for informational purposes. It is your only option though.
 
Back
Top Bottom