Tag: Jetpack
-
Make Your Layout Responsive With ConstraintLayout In Android
ConstraintLayout allows you to create large and complex layouts with a flat view hierarchy (no nested view groups). It’s similar to RelativeLayout in that all views are layered out according to relationships between sibling views and the parent layout, but it’s more flexible than RelativeLayout and easier to use with Android Studio’s Layout Editor. The ConstraintLayout […]
-
Easy Steps To Setup Room Database In Android
Room Database is a part of the Android Architecture components which provides an abstraction layer over SQLite which allows for more robust database access while still providing the full power of SQLite. Room is a persistence library, part of the Android Jetpack Before getting started, check out another post on the jetpack, Getting started with WorkManager [Example] Dependency […]