What is the AndroidManifest.xml?
This file is essential in every application. It is declared in the root directory and contains information about the application that the Android system must know before the codes can…
This file is essential in every application. It is declared in the root directory and contains information about the application that the Android system must know before the codes can…
Dalvik serves as a virtual machine, and it is where every Android application runs. Through Dalvik, a device is able to execute multiple virtual machines efficiently through better memory management.
One technique that prevents the Android system from concluding a code that has been responsive for a long period of time is to create a child thread. Within the child…
There are 4 possible states: foreground activity visible activity background activity empty process
Yes, there are actually instances wherein some qualifiers can take precedence over locale. There are two known exceptions, which are the MCC (mobile country code) and MNC (mobile network code)…
A call to onStop method happens when an activity is no longer visible to the user, either because another activity has taken over or if in front of that activity.
Entire lifetime – activity happens between onCreate and onDestroy Visible lifetime – activity happens between onStart and onStop Foreground lifetime – activity happens between onResume and onPause
Because every component needs to indicate which intents they can respond to, intent filters are used to filter out intents that these components are willing to receive. One or more…
Permissions allow certain restrictions to be imposed primarily to protect data and code. Without these, codes could be compromised, resulting to defects in functionality.
Escape characters are preceded by double backslashes. For example, a newline character is created using ‘\\n’