May 2022
Intermediate to advanced
688 pages
20h 12m
English
An Intent is an object that describes to the OS something that you want it to do. With the explicit intents that you have created thus far, you explicitly name the activity that you want the OS to start, like:
val intent = Intent(this, CheatActivity::class.java)
startActivity(intent)
With an implicit intent, you describe to the OS the job that you want done. The OS then starts the activity that has advertised itself as capable of doing that job. If the OS finds more than one capable activity, then the user is offered a choice.
Here are the critical parts of an intent that you can use to define the job you want done:
Read now
Unlock full access