Convert HTML5 to Standalone Android Application

I have a dynamic HTML5 document that does not contain external resources (images, css and scripts are not encoded inside the document). This HTML5 app works great with an internet browser. I was wondering if it is possible to convert this HTML5 application into a standalone Android application , so it can be launched directly without a browser. Please inform.

+68
android html5 mobile converter mobile-application
Oct 11
source share
3 answers

Build an Android app using Eclipse.

Create a layout with the <WebView> control.

Move the HTML to the /assets folder.

Download webview with your file: /// android_asset / file.

And you have an Android app!

+111
Oct 11
source share

You can use PhoneGap.

http://phonegap.com/

http://docs.phonegap.com/en/2.1.0/guide_getting-started_android_index.md.html#Getting%20Started%20with%20Android

This could be a cross-platform solution. Be careful, although you may have to pay a monthly fee. The easiest solution is to simply insert a WebView as described in @Enigma's answer.

+20
Oct 11
source share

You can use https://appery.io/ This is the same phone delay, but in a very convenient wrapper

0
Oct 08 '15 at 7:18
source share



All Articles