Is it possible to add a web application to the Android marketplace?
I'd like to add a web-based application to the Android market. Is this possible? Tools like JQueryMobile and JTouch are great, but it's easy to miss user acquisition opportunities if you don't get into the marketplace.
You see examples of this from Google - "Tasks", "Latitude" for example. But I h开发者_StackOverflow中文版aven't found a resource explaining how to do this.
why not create an app that simply launches the web page as an intent?
EDIT:
I just found this as well:
http://androinica.com/2011/01/21/appsgeyser-lets-you-easily-convert-any-web-content-to-an-android-app/
It seems to do what you need.
Create an app that contains a button that ends up linking to your site and having the app create a browser instance. Look at "Adobe Flash Showcase" app. There are a few apps that are in the store that are just "bookmarks" to their site. As far as I know though couldn't you create a WebView instance and have it use that inside of the app.
http://developer.android.com/reference/android/webkit/WebView.html
精彩评论