In this tutorial, I will show you how to setup your system to start developing your first Hello World using the Android Studio. Android is based on a modified version of the Linux kernel, and includes following versions till date as shown in the figure below. Please read it from top to bottom. Android 5.0 Lollipop […]
Read More...Thanks to google that he has introduced Job Scheduling API in its latest version Android Lollipop. Sometimes we may face the situation where we want to run a particular task later on some specific condition (known as scheduling). We can do this using the JobScheduler APIs provided by Android 5.0 onward now. In this tutorial, I will explain […]
Read More...Android developers must know what is activity, what is fragments and why and how to use them. But many of them feel it difficult when it comes to the communication between an activity and a fragment. Today in this tutorial I will be showing you how an activity and a fragment communicates. I got so […]
Read More...Sending email in Android is always very easy. We just need to call the email intent and create email chooser and that is it. As soon as you run the app and try to send email you will be asked to select the email application by which you wish to send email such as yahoo, […]
Read More...AutoScroll TextView can be added to Spinner, ListView or any other component as required or as needed. This tutorial will allow us to scroll text inside a TextView in a spinner. Generally, textview will marque the text only when it is focused. By using the below code, the textview will automatically scroll even without focus […]
Read More...In this tutorial, I will explain how to use SlidingPaneLayout. It’s an interesting component which can be used whenever we want a multi-pane horizontal layout in our app. It is divided in two different parts: left side: The master pane which usually contains a list of values. right side: The detail pane which usaully contains […]
Read More...Sometimes when you show toast messages in your code you might not want the default length SHORT or LONG to display the toast. Sometimes we need to customize the duration of toast as per our requirements. Today in this example I will show how to customize Toast to display it for longer duration, by using […]
Read More...Today in this tutorial we will make a small app to have some fun. Can you imagine how you will feel if your mobile screen cracks? Or, How much fun it will be to see your friend’s face when his/her mobile screen cracks while running application you shared with them. Let us create an android […]
Read More...RecyclerView and CardView are 2 very important and new features introduced in Android L version (An early version Android Lollipop). The RecyclerView is a more advanced and more flexible version of the ListView. On the other hand CardView is a new component which is not an “upgrade” to any existing component. Today in this tutorial, […]
Read More...You must have heard about the chrome cast, a product launched by Google to share your small phone or tablet or laptop screen with TV. Google has sold millions of Chromecasts and Android TV until now. Knowing how to build an app that supports casting should be the dream/aim of every Android developer. Today in […]
Read More...