Introduction to Android UI Components In this post, we will understand the core Android UI components. Before building an Application, we have to know about the core android UI components of the screen which create the User Interface in Android. …
Android Intents and Intent Filters Android intent is an intention to perform an operation. It 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 …
The fragment is a small part of Activity. Android fragment splits the Activity into Sub Activity called Fragment that fits into an Activity. This feature was first time introduced in Android 3.0 HoneyComb (API level 11). There is no need …
An Android BroadcastReceiver is another component in Android process, along with activities, content provider, and Services. It is a component that can respond to a broadcast message sent by a client. The message itself is an Android broadcast intent. A broadcast …
The Content Provider provides content to the Android application. They are one of the primary building blocks of Android applications. You need to use Content providers only if data needs to be shared between multiple applications. For example, the contacts …