Java is everywhere
The core Java fundamentals that we are about to learn apply to classes that we inherit from (such as Activity
), as well as classes that we write ourselves (as we will start to do in Chapter 9, Object-Oriented Programming). As it is more logical to learn the basics before we write our own classes, we will be using the extended Activity
class in a whole bunch of mini-projects in this chapter to learn and practice Java, and we will use Log
and Toast
again to observe the results of our coding. In addition, we will use more methods that we will write ourselves (called from buttons), as well as the overridden methods of the Activity
class to trigger the execution of our code.
However, when we move onto Chapter 9, Object-Oriented Programming and start to write our own classes, as well as understand more about how classes written by others work, everything we have learned here will apply then too. In fact, all the Java that you learn in this chapter will work in the following Java environments if you strip it out of the Activity
class and paste it into these environments:
- Any of the major desktop operating systems
- Many modern televisions
- Sat nav
- Smart fridges and more...
Tip
Calling all Java gurus
If you have already done some Java programming and understand the following words: if
, else
, while
, do while
, switch
, and for
, you can probably skip to the next chapter. Or you might like to skim over this information as a refresher.
Let's get on with learning how to code in Java.