Android Basics Archives - Androhub

Adding External Library in Android Studio

Adding an external library in Android Studio is a very common thing but still, most beginners or freshers find it difficult to do. So let’s learn how to add any external library to our Android Studio project and the pros & cons associated with it. VIDEO TUTORIAL DEMO Let’s discuss three ways of adding an

Read More
AlarmManager

Android AlarmManager

Daily we used to set Alarms in our phone to wake up in morning or for some meetings, etc. I used to set lot of alarms for morning but unfortunately i used to wake up late only. 😛  So today we are going to learn about Alarms. Alarms (based on the AlarmManager class) give you a

Read More
Drag and Drop Banner

Android Drag and Drop

Android drag/drop framework allows your users to move data from one View to another View in the current layout using a graphical drag and drop gesture. Although the framework is primarily designed for data movement, you can use it for other UI actions. For example, you could create an app that mixes colors when the

Read More
Camera Banner

Android working with Camera

Today we are going to learn how to capture image via Camera in Android. Integrating camera can be done in two ways. One is to use android inbuilt camera app which is very easy process. This method won’t give you much control over camera as everything is taken care by inbuilt camera app. This way

Read More
Take Screenshot Banner

Take a Screenshot programmatically in Android

Today we are going to learn how to take screenshot programatically in Android. It will help you if you want to share any screen from your app to WhatsApp, Facebook, Hangout or any other app. Before starting the article please go through Share Image and Text article it will help you in this article. Example

Read More