createIntent
createIntent is a method used in Android development to instantiate an Intent object. An Intent acts as a messaging object that a component can use to request an action from another component. This other component can be an Activity, Service, or Broadcast Receiver within the same application or a different application.
The createIntent method is typically called when you want to start a new Activity, launch a Service,
Beyond simply launching components, Intents can also carry data. This is achieved by using the putExtra method
The system then interprets the Intent and determines the appropriate component to deliver it to. This loose