Reputation: 7364
I have a fully-working web app that is accessible using Android's browser. The annoying part is the url bar uses a lot of the screen. Is there a way to make this web app a native Android app? I've read that webview can be used to embed a web site within the Android App.
Unfortunately, I only know web programming languages and have no Java experience. Will I still be able to do this on my own?
Upvotes: 2
Views: 6378
Reputation: 1060
You can use a web app called MIT App Inventor and get it done in less than 10 minutes, it's very easy, intuitive and requires no programming skills at all.
all you need to do is create a new project, drag and drop a WebViewer component, on the right set the home url, and your done! just connect to an android phone via USB to install the app and you can even download the .apk to your computer, sign it and publish it on Google Play
Upvotes: 0
Reputation: 14885
Have you looked at phonegap. It comes with a standalone app with a WebView embedded in it and with native android functionality support. You just need to provide your html/javascript app to it and you're done.
Upvotes: 1
Reputation: 50392
You certainly will need some learning in java, you can start with reading the following :
Webview documentation
A very detailled tutorial (quite hard if you haven't any java basics)
A basic tutorial on webview usage.
Upvotes: 2