How to create an android app using HTML 5

AndroidHtml

Android Problem Overview


Can we create android applications using HTML5?

Android Solutions


Solution 1 - Android

You can write complete apps for almost any smartphone platform (Android, iOS,...) using Phonegap. (http://www.phonegap.com)

It is an open source framework that exposes native capabilities to a web view, so that you can do anything a native app can do.

This is very suitable for cross platform development if you're not building something that has to be pixel perfect in every way, or is very hardware intensive.

If you are looking for UI Frameworks that can be used to build such apps, there is a wide range of different libraries. (Like Sencha, jQuery mobile, ...)

And to be a little biased, there is something I built as well: http://www.m-gwt.com

Solution 2 - Android

Try Sencha Touch. It is a HTML5 compliant framework to build application for touch devices.

Solution 3 - Android

Here is a starting point for developing Android apps with HTML5. The HTML code will be stored in the "assets/www" folder in your Android project.

https://github.com/jakewp11/HTML5_Android_Template.git

Solution 4 - Android

When people talk about HTML5 applications they're most likely talking about writing just a simple web page or embedding a web page into their app (which will essentially provide the user interface). For the later there are different frameworks available, e.g. [PhoneGap][1]. These are used to provide more than the default browser features (e.g. multi touch) as well as allowing the app to run seamingly "standalone" and without the browser's navigation bars etc.

[1]: http://phonegap.com/start/#android "PhoneGap"

Solution 5 - Android

You can use WebView and create a app that put your site inside. https://developers.google.com/chrome/mobile/docs/webview/gettingstarted

Solution 6 - Android

you can use webview in android that will use chrome browser Or you can try Phonegap or sencha Touch

Solution 7 - Android

The WebIntoApp.com V.2 allows you to convert HTML5 / JS / CSS into a mobile app for Android APK (free) and iOS.

(I'm the author)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDeepthi JabiliView Question on Stackoverflow
Solution 1 - AndroidDaniel KurkaView Answer on Stackoverflow
Solution 2 - AndroidAjit KumarView Answer on Stackoverflow
Solution 3 - Androidjakewp11View Answer on Stackoverflow
Solution 4 - AndroidMarioView Answer on Stackoverflow
Solution 5 - AndroidDan PalmieriView Answer on Stackoverflow
Solution 6 - Androidsaurabhgoyal795View Answer on Stackoverflow
Solution 7 - AndroidWISERBITView Answer on Stackoverflow