- Java Android Application Development Tutorial
- Java Programming For Android
- Android App Development Company
Not only is Java the official programming language for Android app development (along with Kotlin), Java itself is used by Google for large parts of the Android internals. There are two distinct.
If you have ever wanted to write your own Android app, for fun or for profit, you are probably going to need to do some programming. There are lots of different ways to write Android programs but the official language of Android is Java, so this Java tutorial for beginners may be for you. If you don’t want to learn Java, then I would recommend you read my article:
Introduction to Java for beginners
Not only is Java the official programming language for Android app development (along with Kotlin), Java itself is used by Google for large parts of the Android internals. There are two distinct parts to learn Java for writing an Android app. One is the Java programming language itself, the other is understanding how to create an app in terms of its user interface, the Android OS, and the Android Software Development Kit (SDK). In this tutorial we will deal with the first of these, the Java programming language.
Java was first released in the mid-1990s by Sun Microsystems. It was designed to be easy to learn Java by programmers who already knew C and C++. During 2006 and 2007 Sun released Java as free and open-source software, under the terms of the GNU General Public License (GPL). Sun was bought by Oracle in 2009/2010, and Oracle remains committed to Java.
To start to learn Java and write Java programs you need a way to compile source code and turn it into an executable for the Java runtime. The normal way to do this is to install the Java Development Kit. At the time of writing the current version of Java is Java 8, however it is relatively new, so Android uses Java 7. If you are unsure about installing the JDK then read this How to Install the Java Software Development Kit tutorial. Oracle also provides a JDK 7 Installation Guide.
However, if you aren’t quite ready to install the JDK, and you want a quick route to trying your first Java program, then I recommend compilejava.net. It is a simple online programming environment that lets you write simple Java programs and run them without needing to go through the hassle of setting up the JDK. There is also the added benefit that since the latest OpenJDK comes bundled with Android Studio then really you don’t actually need to install the JDK, even for writing Android apps!
The compilejava.net web page is divided into three parts. At the top is the space to write your Java code and at the bottom is the output from compiling (left) and running (righ) that code. From here in I will assume you are using compilejava.net. However, for those who have installed the JDK the process is almost identical except that you will need to use a text editor on your PC rather than the editor inside the online IDE.
Cut and paste the following code into the editor:
If you are using the JDK then you need to save the file as HelloWorld.java. In Java the filename of the source code and the class name must be the same. The first line of the code declares a class called HelloWorld, so this source code must be saved in HelloWorld.java. However compilejava.net is clever enough to work that out, so it saves the file as HelloWorld.java automatically!
Now hit the “COMPILE & EXECUTE” button toward the bottom of the screen. Your reward is the text “Hello, World” being displayed in the bottom-right windows. Congratulations!
What did I just do?
So let’s take a moment to look at what just happened. First the source code. The file does three things. 1) It declares a class called HelloWorld. 2) It defines a method (a function) in the HelloWorld class called main. 3) The main() method calls System.out.println to output some text.
In Java, and in all object orientated programming languages, a class defines an object. An object is a self contained item that interacts with other objects. In Android such object would include elements in the UI, a network connection, some location data, and so on.
Each Java program must define a method called main in at least one class. It is the entry point, where the program starts executing. In the simple example above the main() method has just one line of code, a call to System.out.println to output “Hello, World”. println() is a method that belongs to the PrintStream class and is included as part of the System class. Oracle has lots of information about the System class and the PrintStream class.
Java is architecture-independent which means that a .java file isn’t compiled for a specific processor on a specific OS, like Windows on an Intel x86 chip, or Android on an ARM Cortex-A processor, but rather it is turned into Java bytecode. The job of the Java virtual machine is to run that bytecode on the specific platform.
Important Java terms explained
Variables
When writing computer programs you will need to store some data for temporary use. For example in an Android game you will want to store the score of the current player. These bits of data are stored in variables – a box in which you can put some data and then come back later a retrieve it. Since data comes in different forms a variable needs to be defined with a type, which tells Java what is being stored. Some of Java’s primitive data types include int (for integer), double (for double precision floating point number), and boolean (for a true/false value).
Here is a simple program which sets the value of a variable, prints out the value to the console, changes the variable and then prints it out again:
Click “COMPILE & EXECUTE”. The output of the program will be:
As you can see the program defines a variable called “i” and gives it an initial value of 1. The value of “i” is printed to the console. Then i is set to the new value of i + 24, or 1 + 24, which is 25. The new value is then printed out.
Try modifying the program to use a “double” rather than an “int”. Set “i” to something like 1.3 and increase its value by another decimal number like 24.9.
If you take a look at the println() method you will see an integer being added to a string: “The value of i is: ” + i. What actually happens here is that Java knows that the first part of the expression is a string, so it generates the string value for i, in this case “1” and then concatenates it to the string giving: “The value of i is: 1”.
Strings
Strings are an important part of any programming language including Java. Unlike int or boolean, a string isn’t a primitive type it is a class. When you create a string variable you are really creating a String object (notice the capital letter S). As an object it has certain properties like its value (the string itself) and its length. Strings can be manipulated in lots of different ways, including being dissected, concatenated, compared, and searched.
Here is an example program that performs a few simple operations on a String:
Elective Dispute Resolution is an inborn tracker for simple chronicle for a huge assortment ventures. Steinberg nuendo free download. There are likewise some expert capacities, for example, video coat and ramifications of EDL.Much as, Steinberg Nuendo License Key permit a sound match on various tracks. It have additionally the capacity to oversee extensive after creation ventures.
Compile and run it as shown previously.
All free ebooks download. Our full directory of free ebooks for download. Sort by category, most downloaded, and highest rated. Quickly find the books you want to download. FreeBooks.com - The most popular website for Free Books. All The Best eBooks Available For Download - For FREE! Free eBooks; Promotions. All IT related PDF eBooks available for download for free. Programming, Web Development, Computer Science books download in PDF.
This is a special method called a constructor. The constructor is called only once, at the moment that the object is created.
The first part of the program creates a String object called “hello” and gives it a value of “Hello, World”. Although this make look similar to how you declare and assign an integer or another primitive type, actually there is a lot more going on here. Java allows simple operators like = and + to be assigned simple tasks. So really String hello = “Hello, World”; is actually some like String hello = new String(“Hello, World”);, in other words, create a new object of type String and pass in the value “Hello, World” to the constructor. But we will talk more about that in the Objects section below.
The next part shows how you can concatenate strings, in this case an exclamation point is added to the end of the string. Since String is an object it can have methods. String.substring() is a method which returns part of a string. In this case the first 5 characters. String.trim() is another method which removes leading and trailing spaces. The last part of the program demonstrates the String.toUpperCase() and String.toLowerCase() methods.
The output from the program will be:
Java Android Application Development Tutorial
You can find out more about the String object in Oracle’s String tutorial and from the Java String documentation.
Loops
If there is one thing a computer is good at, it is doing repetitive tasks. To perform a repetitive task in a programming language you use a construct called a loop – something that loops around again and again.
Java has three types of simple loop: the for loop, the while loop, and the do while loop. Each loop type follows the same basic idea, you need to repeat something over and over again until a certain condition is met.
Here is an example which shows how to print out the numbers 1 to 10, 11 to 20, and 21 to 30, using the three different types of loop:
Create a file called Loops.java with the code from above, then compile it and run as shown previously.
Java Programming For Android
The for loop as three parts. First the initialization (int i=1), which is executed only once. In the example above the initialization is used to declare an integer i and set its value to 1. Then comes the test expression (i<=10). This expression will be tested every time the loop executes. If the result of the test is true then the loop will go around again. In this example the test is to check that i is still less than or equal to 10. After each iteration the third section, the iterator, will be executed. In this example it increases the value of i by one. Note that i = i + 1 is the same as i++.
The while loop is similar to the for loop, except it doesn’t contain the initialization phase and the iterator phase. That means that the initialization needs to be done separately, hence the declaration int j = 11;. The iterator also needs to be coded separately. In our example it is the line j++ which is found inside the loop after the println().
Android App Development Company
A do… while loop is very similar to a while loop with one big difference, the test to see if the loop should continue is at the end of the loop and not at the start. This means that a do… while is guaranteed to execute at least once, but a while loop doesn’t even need to execute at all, if the conditions aren’t met on the entrance into the loop.
Like the while loop, the initialization needs to happen outside the loop, in this case: int x = 21; and the iterator occurs inside the loop: x++. When x goes over 30 the loop will stop.
Objects
As I mentioned before in this Java tutorial for beginners, Java is what is known as an object-orientated (OO) programming language and to really learn Java programming and Android programming it is important to understand OO concepts.
At its simplest level an object is a set of methods (functions) that work on a data set. The data and the methods belong to the object, and work for the object.
Here is the source code for a very simple program which creates a counter object:
The Counter object has one piece of data, the integer variable count and three methods (other than main): Counter(), Increment(), and GetCount(). Leaving the first method for the moment, you can see that Increment() and GetCount() are very simple. The first adds one to the internal variable count and the second returns the value of count.
Until now all the methods we have declared started with public void but if you notice the GetCount() method starts with public int. We will talk more about public in a moment, but the difference between void and int is this: void declares that the method doesn’t return anything, there will be no result coming back out of the method. But int tells us that the method will return a number, specifically an integer. You can actually create methods that will return all kinds of data, including objects.
Notice that the first method has the same name as the class itself, i.e. Counter(), and it doesn’t have a return type (not even void). This is a special method called a constructor. The constructor is called only once, at the moment that the object is created. It is used to initialize the object with default values and perform any other necessary initialization tasks. In this example it just sets count to zero.
Inheritance
The great thing about classes is that you can create a general class for an abstract idea and then create specific classes which are derived from the original class. For example, you can create a class called Animal and then derive a new class from it for a specific animal, say an Elk.
Here is an example, I will expand on what is happening here in a moment… You are going to need to create two files for this example, Animal.java and Elk.java. Here is Animal.java:
Normally you would put the Animal class above in a file called Animal.java and the Elk class below in a file called Elk.java. However if you are using compilejava.net then you can put all the code into the editor window and it will automatically be saved into the correct files when you compile and execute.
The Animal class is what is known as a super class, while the derived class Elk is known as a sub-class, because hierarchically it is below the Animal class. When a class is extended (i.e. you create a sub-class) the new class takes on the data and methods of the super class. That is why the program is able to call myElk.GetNumLegs() even though it is part of the Animal class. The new Elk class has two variables: NumberOfLegs and lengthOfAntlers. It also has two methods: GetAntlerLength and GetNumLegs. If we created another sub-class, say Sheep, it would inherit the NumberOfLegs variable and the GetNumLegs method.
When designing objects you will discover that you want some methods to be exposed to the rest of the program, so that they can be called. But other methods you might want to keep private, so that only the object itself has access to it. This is where that word public comes into play. We have been declaring everything as public which means the method can be called from anywhere else in the code. However you can declare methods as private or protected, which will limit the access to those methods. The same access rules can also be applied to the object’s variables. A deeper discussion is beyond the scope of this tutorial, but if you would like some more information then you should read Controlling Access to Members of a Class and Declaring Member Variables from Oracle’s Java documentation.
One other thing worth mentioning is how the constructors work. The Elk() constructor initializes the lengthOfAntlers variable, in this case to 30, the number passed in when the object was created. But before that, it calls the constructor of the super class (i.e. Animal() ) using the special Java notation super.
There is a lot more that can be said about object-orientated programming (OOP), but this Java tutorial for beginners should be enough to give you a taste and get you started.
Java Tutorial For Beginners – Wrap up
Thanks for checking out this Java tutorial for beginners. If you want more info on how to learn Java, then we are very happy to offer our comprehensive course over at DigitAcademy.com. This comprehensive series will take you from absolute beginner to confident pro, and you’ll also receive our full Introduction to Android App Development course.
You can also check out part 2 of this series: Java tutorial for beginners, part 2. There are also lots of online tutorials to learn Java. Here are a few from Oracle:
Oracle tutorials
- Getting Started — An introduction to Java technology and lessons on installing Java development software and using it to create a simple program.
- Learning the Java Language — Lessons describing the essential concepts and features of the Java Programming Language.
- Essential Java Classes — Lessons on exceptions, basic input/output, concurrency, regular expressions, and the platform environment.
Third party tutorials
You might also want to look at the following tutorials:
(e)books
For those of you who would like an eBook or a printed book on how to learn Java programming then you might want to consider the following:
Also, good books on Android programming include:
Java resources:
- Android Studio tutorial for beginners
- [Bundle] Go from coding newbie to Java genius
Save 60% on our Introduction to Android Development Course
Android Authority has created a course to help you learn how to develop Android Apps! No Coding Experience Required. Start Your Journey on Becoming an Android Developer today.
Please enable JavaScript to view the comments powered by Disqus.