Please enable JavaScript.
Coggle requires JavaScript to display documents.
Android - Coggle Diagram
Android
-
-
termini
-
AIDL
the implemented interface is exposed to client using onBind() and client waiting to use it can bind to it.
-
Networking
APN - Access point name
An APN acts as a gateway between your mobile device's data network and the internet, telling your phone how to connect for services like browsing and picture messaging.
Develop
Api Refences
Intent
An intent is an abstract description of an operation to be performed. It can be used with startActivity to launch an Activity, broadcastIntent to send it to any interested BroadcastReceiver components, and Context.startService(Intent) or Context.bindService(Intent, BindServiceFlags, Executor, ServiceConnection) to communicate with a background Service
-
-
service lifecycle
main features
Context.startService()
A facility for the application to tell the system about something it wants to be doing in the background
-
-
-
onStartCommand(Intent, int, int)
-
-
-
system build
gradle
android section
namespace
key use cases
-
Modularization: Allows each module to define its own namespace, making it easier to manage and reuse.
-
-