Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting started with android development [closed]

Tags:

java

android

I have been windows developer since the beginning, now the current trends dictate that I focus on newer technologies and platforms.

My question is how can get started with android development and can it be done on windows pc with windows 7, if yes what tools do I need.

like image 272
Steve.Naash Avatar asked Sep 15 '12 21:09

Steve.Naash


People also ask

Is Java still used for Android development 2022?

Building Android Applications Its main competitor for application development is Kotlin, but it is compiled to the byte code JVM executes, and we can say it is just a “cleaner” version of Java. And by the way, Java is compatible with the most popular tool for Android apps - Android Studio.

Are Android developers still in demand?

As a result, there is a high need for Android developers to create new user-friendly apps and improve the performance of current ones. Native mobile development frameworks such as Android and iOS are always relevant. Many companies still prefer them over hybrid development frameworks.

Is there a future in Android development?

With the Android market growing rapidly, the job opportunities for Android Developers are also increasing. So if you want to take Android Development as a career option, then you can easily get a good salary package in this industry.


3 Answers

Setting up your tools :

  1. Install Eclipse [NOTE : You can choose any IDE but this is the most widely used one for Android development. IntelliJ is another IDE you could try. ]
  2. Install ADT (Android Development Tools) plugin for eclipse (assuming that you did choose to go with eclipse)
  3. Update your android tools by using the Android SDK manager
  4. (optional) get an Android device for testing you applications as it is not advisable to rely totally on the emulator

Getting started :

  1. Since you are a Windows developer, you must be fluent with C#, so catching up with Java (in case, you already haven't) shouldn't be much of a trouble
  2. Bookmark the Android developer website and never hesitate to check up the documentation when in doubt
  3. Have a look at the sample codes given on the official website
  4. You may wish to follow the steps mentioned up here as they walk you through the whole process

Useful Resources :

  1. Tutorials by Vogella
  2. Video tutorials by thenewboston [ Note: This is the one of the best series of Android video tutorials that I have even found, so don't hesitate to download all 200 of the videos. They are really very helpful! ]
  3. Video tutorials by mybringback

  4. Answers on StackOverflow

Good luck! May the Droid be with you! ;)

like image 61
Swayam Avatar answered Nov 10 '22 16:11

Swayam


Watch the Lynda.com's Android App Development With Java training, and you will learn it all... You need Eclipse, Android SDK and the ADT plugin.. that is all..

Happy Developing

like image 43
Miro Markaravanes Avatar answered Nov 10 '22 16:11

Miro Markaravanes


You should start at http://developer.android.com/index.html.

Download the SDK, read the documentation.

like image 22
Hans Then Avatar answered Nov 10 '22 16:11

Hans Then