What are the Android application components?

devquora
devquora

Posted On: Feb 22, 2018

 

Android application components are the building block essentially used in the Android application. The application manifest file named Android manifest.xml couples the components. This describes each component of the application and describes how they interact, and then the processing activity takes place.

There are four main components, which are:

  • Activities: They show the UI and handle the interaction of the users in smartphone screen.
  • Services: They take care of the processing associated with the application.
  • Broadcast Receivers: They handle the communication process between Android OS and application.
  • Content Providers: They handle issues with data and database management.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Android Interview Questions

    What is Android?

    Android is an open-sourced operating system by Linux that is primarily used in mobile devices like cell phones and tabl..

    Android Interview Questions

    What does Fragment mean?

    A fragment means behavior or the portion of user interface in a Fragment Activity. One can combine multiple fragments i..

    Android Interview Questions

    What options do the users get to save data in Android?

    Android provides some options to save or store the app data. Here the choice depends on the specific needs and requirem..