CATEGORIES
Every Android application runs inside limited access sandbox. Now if the application needs to access external resources like internal storage then we have specific permission to access that…
SHA1 fingerprint is a unique hash or can be called as the signature of your application. In the old days, we use to verify application from client-side like…
Probably every app needs login and signup. Sometimes we need to collect very little data from the user. The user gets tired of entering this common information again…
Android CoordinatorLayout is a layout that provides control over design library components. Design library components like FloatingActionButton, SnackBar, AppBarLayout, etc. These components behave differently when added to CoordinatorLayout. Term Coordinate means bring…
All
Creating responsive UI for android applications was very difficult by using some basic layouts like RelativeLayout, LinnearLayout, FrameLayout, etc. With ConstraintLayout we can create complex layouts furthermore making responsive UI …
Every Android application runs inside limited access sandbox. Now if the application needs to access external resources like internal storage then we have specific permission to access that…
SHA1 fingerprint is a unique hash or can be called as the signature of your application. In the old days, we use to verify application from client-side like…
In this article, I will explain how to implement MVVM pattern with Android Architecture Components. Android Architecture components contain a bunch of libraries that will help you to…
Recyclerview becoming one of the most useful components of android applications. It uses less memory while displaying data from large Data-sets and Collections. Furthermore, it provides a seamless…