 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert HTML5 into standalone Android App
Steps
Follow the below-given steps to convert HTML5 into standalone Android App
-  You need to first create an Android app using Eclipse. 
- Move HTML code to /assets folder − 
 The Assets provide a way to include arbitrary files such as text, XML, music, fonts, and video in your application.
-  Load web view with the file − android_asset/ file 
- enable javascript
Layout for WebView
While creating a layout for WebView −
WebVieww = new WebView(this); w.loadUrl("http://www.app.com/");Advertisements
 