May 2022
Intermediate to advanced
688 pages
20h 12m
English
Let’s look at what is going on OS-wise as you move between activities. First, when you click the GeoQuiz app in the launcher, the OS does not start the application; it starts an activity in the application. More specifically, it starts the application’s launcher activity. For GeoQuiz, MainActivity is the launcher activity.
When the New Project wizard created the GeoQuiz application and MainActivity, it made MainActivity the launcher activity by default.
Launcher activity status is specified in the manifest by the intent-filter element in MainActivity’s declaration:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" ... > <application ... > <activity android:name=".CheatActivity" ...
Read now
Unlock full access