Android

Android CollapsingToolbarLayout Example — step-by-step DevOps tutorial on Progressive Robot

Android CollapsingToolbarLayout Example

Welcome to Android CollapsingToolbarLayout Example. In this tutorial, we'll discuss and implement CollapsingToolBarLayout in our application. Android CollapsingToolbarLayout Android CollapsingToolbarLayout is a wrapper for Toolbar which implements a collapsing app bar. It is designed to be used as a direct child of a AppBarLayout. This type of layout is commonly seen in the Profile Screen […]

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

Android GridLayoutManager Example

Android GridLayoutManager is the RecyclerView.LayoutManager implementation to lay out items in a grid. In this tutorial, we'll create an application that displays [CardViews](/community/tutorials/android-recyclerview-android-cardview-example-tutorial) inside a RecyclerView in the form of a GridLayout. Also, we'll implement an interface that makes RecyclerView item click similar to a [ListView](/community/tutorials/android-listview-example-tutorial) itemClickListener. Android GridLayoutManager We've implemented a RecyclerView using a […]

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

Android Navigation Drawer Example Tutorial

In this tutorial we'll implement a Navigation Drawer in our android application. Android navigation drawer is a sliding menu and it's an important UI component. You will see navigation drawer in most of the android applications, it's like navigation menu bars in the websites. Android Navigation Drawer Android Navigation Drawer is a sliding left menu […]

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

Android Shared Preferences Example Tutorial

In this tutorial we'll use Shared Preferences in our android application to store data in the form of key-value pair. n Android Shared Preferences Overview Shared Preferences allows activities and applications to keep preferences, in the form of key-value pairs similar to a Map that will persist even when the user closes the application. Android […]

Read more
How To Host A Web Server On Android — step-by-step DevOps tutorial on Progressive Robot

How To Host A Web Server On Android

In this module, we will have a look at how we can host a web server on Android and port forward it using ngrok so that we can have a flexible webserver on the go. Steps to host a web server on Android Let's get right into the steps to host a web server on […]

Read more
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
CHAT