I built a site in asp.net C#. Visual Studio 2010.
The site scales nicely and fits on my phone and other Android divices. It database driven also. I want to make an app for the android market out of my site now. Free app.
Can i easily accomplish this? Can a app be as simple as launching a browser window? Will the android market accept an app like that?
Point me in the right direction please. Im unsure where to start.
What you describe can be easily accomplished using a
WebView
.WebView
(from android developers) : A View that displays web pages. This class is the basis upon which you can roll your own web browser or simply display some online content within your Activity. It uses the WebKit rendering engine to display web pages and includes methods to navigate forward and backward through a history, zoom in and out, perform text searches and more.Here's a simple sample app:
and a very simple layout file: main.xml
Of course you will have to set a permission in your Manifest: