Select Page
Multi select like WhatsApp in Android

Multi select like WhatsApp in Android

In this post, you will learn how to select multiple items from the list (recyclerview) like WhatsApp, using contextual action mode. Contextual action mode displays a contextual action bar at the top of the screen with action items such as “copy, edit, delete,...
What is an API ? How to call an API from Android ?

What is an API ? How to call an API from Android ?

What is an API ? Nowadays we use the term API so often. I meet lots of people, both working in tech and elsewhere, who have a rather vague or incorrect idea about what this fairly common term means. An Application Programming Interface (API) is a particular set of...
How to show AlertDialog in Android?

How to show AlertDialog in Android?

We need AlertDialog to get user feedback, confirm, alert .You can find basic details about AlertDialog in my previous post. While playing with AlertDialog this utility class will help you more. What is AlertDialogHelper ? AlertDialogHelper which is the utility class...
How to Sign Your APK automatically ?

How to Sign Your APK automatically ?

Gradle is the build system used by Android Studio . Android requires that all APKs be digitally signed with a certificate before they can be installed. For signing your APK you need to create certificate and keystore. You can Sign your APK using build.gradle.By using...
How to secure your APK using Proguard?

How to secure your APK using Proguard?

Mobile app security is the extent of protection that mobile device applications (apps) have from malware and the activities of crackers. Crackers can reverse-engineer the Android application source code and access the contents of the package. All the drawable,...