Fri. Nov 15th, 2024

Category: Android

Dialogs

A dialog is a small window that prompts the user to make a decision or enter additional information. A dialog does not fill the screen and is normally used for…

Explicit Intent

Explicit Intent specifies the component. In such case, intent provides the external class to be invoked. Intent i = new Intent(getApplicationContext(), ActivityTwo.class);  startActivity(i);   To get the full code of explicit intent,…

Intents

Android Intent is the message that is passed between components such as activities, content providers, broadcast receivers, services etc. It is generally used with startActivity() method to invoke activity, broadcast…

Network Checking

Determining and Monitoring the Connectivity Status Some of the most common uses for repeating alarms and background services is to schedule regular updates of application data from Internet resources, cache…

IMEI

Every GSM phone, be it a basic, dirt-cheap handset or a pricey, powerful smartphone, has its own International Mobile Equipment Identity number, commonly known as IMEI. This is usually a…