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");
Log.v("MyActivity", "Hello World");
}
"Hello World" , .