Android Service is a amazing component of the Android application development. By using Android Service you can perform long running operations in the background. A simple example of Android Service is covered in this part to help you understand the basic concept of the Android Services.
Continue reading “Android Service Example”Tag: Android Studio project
Working with Android Fragments
Fragment is an important topic of Android App Development. We already discussed about that. Now it’s time to practically implement Android fragment. We will create and embed an Android Activity fragment. let’s go.
Continue reading “Working with Android Fragments”Lifecycle of Android Fragments
Android fragments have their own events, layouts and lifecycle. In this section we will discuss the various stages of fragments lifecycle.
Continue reading “Lifecycle of Android Fragments”Android Broadcast Receiver
Broadcasts is a messaging system between apps in the Android operating system. Android Broadcast is a component in Android that allow the system and other apps to send and receive events.
Continue reading “Android Broadcast Receiver”Services In Android
A Service is a special type of Android component used to perform long-running operations in the background. You can play music, handle network transactions and many background operations using this magical Android component. So let’s quick dive into the service.
Continue reading “Services In Android”Introduction to Android Fragments
Android Fragment is a reusable Graphical User Component (GUI). In other word, A Fragment is a piece of the Android Activity. Fragments encapsulate views and logic so that it is easier to reuse within activities. In this section we are going to learn an interesting and important topic that is Android Fragments.
Continue reading “Introduction to Android Fragments”Introduction to Gradle and build.gradle files
The Gradle build system is used to build Android applications in Android Studio. Android projects are handled by the Gradle system which is an automated build system.
Continue reading “Introduction to Gradle and build.gradle files”