TapTargetView library in Android Studio

https://github.com/KeepSafe/TapTargetView An implementation of tap targets from Google’s Material Design guidelines on feature discovery.         https://github.com/KeepSafe/TapTargetView Simple usage TapTargetView.showFor(this, // `this` is an Activity TapTarget.forView(findViewById(R.id.target), “This is a target”, “We have the best targets, believe me”) // All READ MORE

Picasso Image Loader Library in Android

Picasso A powerful image downloading and caching library for Android download the image and display on imageView //Initialize ImageView ImageView imageView = (ImageView) findViewById(R.id.imageView); //Loading image from below url into imageView Picasso.with(this) .load(“YOUR IMAGE URL HERE”) .into(imageView); https://github.com/codepath/android_guides/wiki/Displaying-Images-with-the-Picasso-Library Displaying Images with the Picasso Library READ MORE

Data Binding MvvM

https://barta.me/android-mvvm-pattern/ Android MVVM pattern August 28, 2016 by Milan Bárta In my last post, I’ve introduced the Android data binding support library which helps to get rid of unnecessary boiler-plate code related to view-model binding. In this post, I’d like to introduce you to the Android MVVM READ MORE