Through our Previous Articles, we have discussed Creating an Android Service and Creating a Bounded Service. These services are user interactive; means, these are foreground services. We can interact with the Services through the User Interface elements. We have another type of Android Service, which is called Background Service. In this Article we are going […]
Android Programming – Develop an Android Service
We have discussed how to add a Service to an Android Application through the Article “Android Programming – Add a Service to the Application“. The Service that we have developed was NOT an Android Service; it was a simple Java class to provide a random message when requested. In this article, we will go through […]
Android Programming – Android Service life cycle
We have discussed about Android Core Components and also walk through with an example to Create a Service (not an Android Service). Before we extend our Service to an Android Service; I would like to explain the Android Service life cycle through this Article. This will help you to understand how the Android Service will […]
Android Programming – Add a Service to the Application
In our previous Article “Android Programming – Create an Activity and Add a Button handler“, we have discussed adding an Activity and Add a Button handler. Once the button is clicked; we have displayed the “Hello, World!” message on the Activity screen. We have used the below statement to display the “Hello, World!” message on […]
Android Programming – Create an Activity and Add a Button handler
We have discussed Core Components in Android in my previous Article “Android Programming – Core Components“. In this article, we will discuss Adding a Button to the Activity and adding a Button handler to display the “Hello, World!” text. Step 1. Create an Android Project. While creating the Project; in the “Add an Activity to […]
Android Programming – Core Components
Through my previous Articles, we have discussed developing a sample Android Application, “MyApp”; Build & Run the Application in Android Studio. In this article, I am going to explain, what are the core components of the Android application. Lets’ take our already built Application “MyApp”; here is the Android view, which shows the list of […]