Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to develop android application using html,css and javascript in android sdk. I dont want to use another tool like titanium and phone gap .

Is it possible to make application using the html,css and javascript ?

Are Android web apps as good as native apps? Can the same functionality be achieved through web apps?

if it is good in comparison of native application , so can any one tell me the proper way to do this or provide me good tutorial ?

share|improve this question

3 Answers

up vote 11 down vote accepted

The Short answer: Yes, you can develop apps using HTML / CSS / Javascript. Take two WebView Tutorials and call me in the morning.

The Long Answer: If you want to write apps for Android that use HTML / CSS / Javascript, you'll have to at least create a native WebView wrapper. This is relatively easy to do -- unless you want to hook into native functions, such as the accelerometer, camera, or even the Toast Messages (the little messages that pop up when something happens).

Accessing the native hardware and software through a webview requires you to write a JavascriptAdapter (available in Android 2+), and define some custom Javascript methods in the JavascriptAdapter. Those methods map to a java function, which DOES have access to the native OS facilities.

Frameworks such as Appcelerator and PhoneGap do exactly this, except they've already written the javascript functions for you, so it saves you from having to write those yourself.

In that sense, if you're going to write an app for Android using HTML / CSS / Javascript, it makes sense to use a framework. Otherwise, you're doing that work yourself.

share|improve this answer
1  
thanks for your reply . Nice answer. – Chirag Raval Jul 23 '11 at 7:02

you can make a web application and convert it in android app (apk) by using javascript, HTML5 and deploy in phonegap.

Develop Android Apps with html5 and Javascript

share|improve this answer

the installed android apps are faster than online browser apps. and the installed apps are available and working when user lost the internet connection

share|improve this answer
That depends. Installed apps like the Gmail app are examples of apps that can run both online/offline, buy only need connection to sync. These are the ideal apps. – Cygwinnian Jan 1 at 2:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.