Pergunta

I have developed one website and now I want to create an android app for it. App should be in sync with web site automatically. I know there are many online free tools for it. But I want to learn Android programming from basic.

I just don't want to link or view the webpages from Smartphone but I must be able to add some android features. You may assume I am newbie in an Andriod developing field. So I want any, good tutorial or book for this. Any suggestion?

For e.g. suraj.com ---> Suraj (android​ app)

Thank you in advance.

Foi útil?

Solução

If you want to build native app, and communication with your server, follow the step

  1. Learn JAVA and Android SDK
  2. Use Eclipse
  3. Build your server and create web api (like http://localhost/index.php?data=123)
  4. In android application, call web api to send or receive data (GET,POST)

and you can also following this website

  1. Android User Interface Design: Layout Basics
  2. androidhive

Outras dicas

Typically new Android apps use the ActionBar UI pattern. If you're looking for something quick, create an Android app with an ActionBar for navigation, and use a WebView to display mobile-compatible pages from your website.

You can use phonegap, if its a simple website, or you can load website through inapp browser into your app. I would recommend to use phonegap though.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top