Need a “complete” understanding of Java for Android software applications?

I want to start developing applications for Android, and I was wondering if you can fill me with knowledge and requirements from a technical point of view.

I have installed SDK, Eclipse and Java, and even a phone for a "real" test.

My question is a complete Java lover and never used the language, how much java would I need to learn to develop Android applications?

+5
source share
10 answers

I would say that you can just start with some tutorials in the same way as with Java. You will learn along the way, just use a lot of tutorials.

, , .. .

, Java, :

public static void main(String[] args){
    System.out.println("Hello World");
}

Android :

public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    System.out.println("Hello World");
    // Or:
    Log.v("MyActivity", "Hello World");
}

"Hello World" , .

+7

- , "" Java .

- Android Java. , ", !". , , , . , Java .

- Java , , Android .

Barry

+5

- , "" . android, , , android, , Java.

( , - - )

+3

Java, - .

+2

Polymorphism java. Android. , java Threading, .

+2

Java, /:

  • ( biggie)
  • /
  • - API- Java
  • , . .

Android dev. , "Head First" java, Android, .

+2

, Java. "Android" Java, , ( ), Java.

+1

Java, , , , Android. Android . Android Application Development for Dummies , O'Rielly Learning Android. Java, Java Tutorials oracle.com, , , Android.

System.out.println Android, textView , XML, Java- .

: http://developer.android.com/resources/browser.html?tag=tutorial .

+1

Java

  • , , ,
  • (, ).

, Java-.

+1

. , Google Maps Angry Birds, Java. Java, , Android. !

0
source

All Articles