Android

Android ConstraintLayout Example Tutorial — step-by-step DevOps tutorial on Progressive Robot

Android ConstraintLayout Example Tutorial

In this tutorial, we'll discuss the intricacies of android ConstraintLayout. Google had introduced android constraint layout editor at Google I/O Conference 2016. The new Layout Editor has a set of powerful tools to allow developers to create flat-ui hierarchies for their complex layouts. Android ConstraintLayout To use android ConstraintLayout, make sure you're using the latest […]

Read more
Android Intent Handling Between Activities Using Kotlin — step-by-step DevOps tutorial on Progressive Robot

Android Intent Handling Between Activities Using Kotlin

In this tutorial, we'll be discussing Android Intents and implement them using Kotlin in our application. What Will You Learn? What are Intents? Types Of Intents? Using Intents Between Activities Sending Data Using Android Intents Using Parcelable and Serializable to pass objects Creating shorthand intents Android Intents As the name says Intent is something that's […]

Read more
Android Notification, PendingIntent Example — step-by-step DevOps tutorial on Progressive Robot

Android Notification, PendingIntent Example

Welcome to Android Notification Example using android PendingIntent. In this tutorial we're going to discuss and implement PendingIntent and build Notification in our application. Android PendingIntent Android PendingIntent is an object that wraps up an [intent](/community/tutorials/android-intent-handling-between-activities-example-tutorial) object and it specifies an action to be taken place in future. In other words, PendingIntent lets us pass […]

Read more
Android SharedPreferences using Kotlin — step-by-step DevOps tutorial on Progressive Robot

Android SharedPreferences using Kotlin

In this tutorial, we'll learn how to implement SharedPreferences in our Android Application using Kotlin. What is Android SharedPreferences? SharedPreferences is part of the Android API since API level 1. It's an interface that allows us to store/modify/delete data locally. Generally, it is used to cache user local data such as login forms. The data […]

Read more
How to increase your Gradle Build Speed? — step-by-step DevOps tutorial on Progressive Robot

How to increase your Gradle Build Speed?

URL: https://www.progressiverobot.com/increase-gradle-build-speed/ In this tutorial we'll look at things that can be done with the Gradle build to speed up the build time. Speed up your Android Gradle Build As our Android Studio project size increases, the gradle build performance becomes critical. The gradle speed for even the simplest project is pretty slow. Though every […]

Read more
Android CoordinatorLayout — step-by-step DevOps tutorial on Progressive Robot

Android CoordinatorLayout

Up until now we've used android CoordinatorLayout in plenty of our tutorials. Yet we haven't gone into it's details. In this tutorial we'll discuss and customise the CoordinatorLayout in android app. Android CoordinatorLayout Android CoordinatorLayout is a super-powered [FrameLayout](/community/tutorials/android-framelayout-absolutelayout-example-tutorial). It has a lot more to offer than it seems. It has additional level of control […]

Read more
Android Internal Storage Example Tutorial — step-by-step DevOps tutorial on Progressive Robot

Android Internal Storage Example Tutorial

Today we will look into android internal storage. Android offers a few structured ways to store data. These include [Shared Preferences](/community/tutorials/android-shared-preferences-example-tutorial) Internal Storage [External Storage](/community/tutorials/android-external-storage-read-write-save-file) [SQLite Storage](/community/tutorials/android-sqlite-database-example-tutorial) Storage via Network Connection(on cloud) In this tutorial we are going to look into the saving and reading data into files using Android Internal Storage. Android Internal Storage […]

Read more
Android P: Chips and ChipGroup — step-by-step DevOps tutorial on Progressive Robot

Android P: Chips and ChipGroup

In this tutorial, we'll be discussing the latest components that are a part of the new Material Design Library: Chips and Chip Groups. We'll be implementing them in our android application. Android Chips Chips are basically a text displayed in a rounded background. These are checkable and can contain icons as well. Chips are a […]

Read more
Android Snackbar Example Tutorial — step-by-step DevOps tutorial on Progressive Robot

Android Snackbar Example Tutorial

In this tutorial we'll discuss and implement various forms of Android Snackbar widget in our application. Android Snackbar Snackbar in android is a new widget introduced with the Material Design library as a replacement of a Toast. Android Snackbar is light-weight widget and they are used to show messages in the bottom of the application […]

Read more
NavigationView In Android — step-by-step DevOps tutorial on Progressive Robot

NavigationView In Android

URL: https://www.progressiverobot.com/navigationview-android/ In this tutorial, we'll discuss and implement a NavigationView in our android application. Here, we'll learn to style it such that it opens from right to left too. NavigationView We have already implemented a Navigation Drawer in [this](/community/tutorials/android-navigation-drawer-example-tutorial) tutorial and it was tiresome to code. NavigationView is a better and easier to implement […]

Read more
CHAT