Android

Android SwipeRefreshLayout - Android Pull/Swipe Down to Refresh — step-by-step DevOps tutorial on Progressive Robot

Android SwipeRefreshLayout – Android Pull/Swipe Down to Refresh

In this tutorial we'll discuss and implement Android Swipe Down to Refresh or Android Pull to Refresh the screen. This Android Material Design UI pattern is very commonly seen in many applications like Gmail, Facebook, Twitter and implemented using Android SwipeRefreshLayout. Android SwipeRefreshLayout ![Android SwipeRefreshLayout, android pull to refresh, android swipe down to refresh screen](images/android-swiperefreshlayout-pull-swipe-refresh-section-1.png) […]

Read more
Android ListView with Custom Adapter Example Tutorial — step-by-step DevOps tutorial on Progressive Robot

Android ListView with Custom Adapter Example Tutorial

In this tutorial we'll use a CustomAdapter that populates the custom rows of the [Android ListView](/community/tutorials/android-listview-example-tutorial) with an ArrayList. Also to enhance the user experience, we'll animate the ListView while scrolling. Android ListView Custom Adapter Overview The simplest Adapter to populate a view from an ArrayList is the ArrayAdapter. That's what we'll implement in this […]

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

Android ActionBar Example Tutorial

Today we will look into Android ActionBar. Action Bar is one of the important part of any application, whether it's a web application or a mobile app. Today we will learn how to implement action bar in android apps using ActionBar component. Android ActionBar ![android actionbar, android action bar](images/android-actionbar-example-tutorial-section-1.png) Android ActionBar is a menu bar […]

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

Android ProgressBar Example

Welcome to Android ProgressBar Example. Today we'll implement android ProgressBar in our application. There are two types of progress bars : Horizontal and Circular. We'll create both of these progress bar in android application. Android ProgressBar Android ProgressBar is a graphical view indicator that shows some progress. Android progress bar displays a bar representing the […]

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

Android TextInputLayout Example

In this tutorial, we'll be looking in depth at the features that Android TextInputLayout provides us. Android TextInputLayout is a design component that comes with the Material Design Support Library. Android TextInputLayout Android TexInputLayout extends LinearLayout. The primary use of a TextInputLayout is to act as a wrapper for EditText(or its descendant) and enable floating […]

Read more
Android Floating Action Button Example Tutorial — step-by-step DevOps tutorial on Progressive Robot

Android Floating Action Button Example Tutorial

Today we will learn about Android Floating Action Button. We'll discuss the FloatingActionButton, that's a new component included in the Material Design Guidelines and [SnackBar](/community/tutorials/android-snackbar-example-tutorial), which is a Material Design replacement of a [Toast](/community/tutorials/android-spinner-drop-down-list). Android Floating Action Button Android Floating Action Button is used to pay emphasis to the most important function on the screen. […]

Read more
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 RecyclerView Load More, Endless Scrolling — step-by-step DevOps tutorial on Progressive Robot

Android RecyclerView Load More, Endless Scrolling

In this tutorial, we'll be discussing and implementing Endless Scrolling or Infinite Scroll on RecyclerView in our Android Application. The infinite scrolling in which the next set of rows are fetched from the DB/Server while showing a loading icon is commonly seen in many applications such as Facebook, Twitter. It's recommended to go through [this](/community/tutorials/android-recyclerview-example) […]

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

Android Face Detection

With the release of Google Play services 7.8, Google has brought in the Mobile Vision API that lets you do Face Detection, Barcode Detection and Text Detection. In this tutorial, we'll develop an android face detection application that lets you do detect human faces in an image. Android Face Detection Android Face detection API tracks […]

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

Android Fragment Lifecycle

Today we will learn about Android Fragment Lifecycle and implement a single activity class consisting of two fragments in android application. Android Fragment Fragment class in Android is used to build dynamic User Interfaces. Fragment should be used within the Activity. A greatest advantage of fragments is that it simplifies the task of creating UI […]

Read more
CHAT