intent Archives - Androhub

Security Lock Banner

Android Confirm Credential (Security Lock)

Hi all today we are going to work on one more app security topic apart from FingerPrint Authentication. In many of apps you have seen the app is opening a screen where it ask you to enter the PIN or draw a Pattern which is by default security you have set to your device. Some the

Read More
Sectioned RecyclerView Banner

Sectioned RecyclerView Android

Hi all, Today we are going to learn how to make Sectioned RecyclerView which you have seen in PlayStore App. To know about RecyclerView and basic implementations you can see my previous articles on it. To make Sectioned RecyclerView we are going to need a RecyclerView nested into another RecyclerView. VIDEO 1. Create a new

Read More
StartActivityForResult Banner

Android StartActivityForResult

In Android we can pass data from one activity to another via Intent using startActivity(). The syntax for this is shown below :

Similarly we can get data from our other activity that is opened by an activity like SecondActivity from MainActivity and we need some message from SecondActivity back again to MainActivity so for this

Read More
Image and Text Share

Android Share Text and Images Using Share Intent

Android provide us an Intent by which we can use to share image, video, audio, text, etc. to other installed apps like WhatsApp, Facebook, Twitter, etc. We had seen many apps has functionality of sharing image and text to other app and also they have functionality to make other apps share their text and image to

Read More
Text to Speech

Android Text To Speech

Android allows you convert your Text into Voice. Not only you can convert it but it also allows you to speak text in variety of different languages. Android provides TextToSpeech class for this purpose. In order to use this class, you can implement TextToSpeech.OnInitListener this listener to your class and it will automatically add the below method to your

Read More
Gallery ImagePicker

Android Gallery Image Picker

Android supports seamless integration of applications and content providers. Lot many things are handy provided to developers, which helps in reducing the code and consumes less time to integrate different features to app. For example, if we have an application that allow user to change his profile picture. In this requirement user will be welling

Read More