Read Contacts in Android

Read Contacts in Android

Android allows to read contacts using Contacts Provider. It manages access to a central repository that stores the contact details of the people. The Contacts Provider is a content provider...
Capture Location in Android

Capture Location in Android

Android allows to capture current location of the device, and we can build location-aware applications. When developing location aware-application, we can choose location provider. It provides periodic location reports of...
Display Web View in Android

Display Web View in Android

A web view can be used to display web pages inside an application without opening a browser. Web view only displays a page and does not provide the browser features...
Show Notification in Android

Show Notification in Android

A notification is a message that appears outside an application's UI to get user attention, provide reminders, notify about events, etc. A typical notification consists of a small icon, title...
Save Data in Android Internal Storage

Save Data in Android Internal Storage

Internal storage is used to save and retrieve the application's private data. Other applications don't have access to this data. Files will be removed when the user uninstalls the application...
Integrate OpenCV 4 into Android via Gradle

Integrate OpenCV 4 into Android via Gradle

OpenCV is an open-source library that can be used for image processing, computer vision, machine learning, etc. OpenCV 4 can be easily integrated into Android via Gradle using com.quickbirdstudios:opencv dependency...