Android

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

Android AutoCompleteTextView Example Tutorial

AutocompleteTextView is an editable text view that shows completion suggestions automatically while the user is typing in android apps. In this tutorial we'll implement android AutoCompleteTextView in our application using an ArrayAdapter to define the list of suggestions. Android AutoCompleteTextView Overview AutoCompleteTextView is a component used to show suggestions while writing in an editable text […]

Read more
Android Material Design Button Style Design — step-by-step DevOps tutorial on Progressive Robot

Android Material Design Button Style Design

Today we'll dive deep into Android Buttons in Material Design and develop an application that showcases the different styles of a Button. Android Material Design Button Buttons in Android are used to communicate our actions with the application. The introduction of Material Design has brought along many different kinds of Button styles which are compatible […]

Read more
Android Login and Registration With PHP MySQL — step-by-step Databases tutorial on Progressive Robot

Android Login and Registration With PHP MySQL

Android Login and Registration are very common scenarios. You will find registration and login operation in all the apps where we want user information. In this tutorial, we'll set up a local web server and MySQL database. We will develop android login and registration application. We will use PHP script to connect to the MySQL […]

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

Android ProgressBar using Kotlin

In this tutorial, we'll discuss and implement ProgressBar in our Android Application using Kotlin. What is a ProgressBar? ProgressBar UI element is used to display the Progress on the app screen. We can use a ProgressBar to show the download/upload progress on the app screen. Progress Bar Types There are two types of Progress Bar. […]

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 Passing Data Between Fragments — step-by-step DevOps tutorial on Progressive Robot

Android Passing Data Between Fragments

In this tutorial, we'll be developing an application that contains TabLayout, ViewPager and Fragments. We'll implement a functionality that passes data from one Fragment to the other fragment. Android Passing Data between Fragments Intents are only usable for sending data on an Activity level. To pass data between fragments we need to create our own […]

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
OkHttp Android Example Tutorial — step-by-step DevOps tutorial on Progressive Robot

OkHttp Android Example Tutorial

URL: https://www.progressiverobot.com/okhttp-android-example-tutorial/ OkHttp is a third party library that was introduced by Square in 2013 for sending and receive HTTP-based network requests. OkHttp Android Initially Android had only two HTTP clients: HttpURLConnection and Apache HTTP Client; for sending and receiving data from the web. Each of these clients required a lot of boilerplate code to […]

Read more
Android SQLite Database Example Tutorial — step-by-step Databases tutorial on Progressive Robot

Android SQLite Database Example Tutorial

Welcome to Android SQLite Example Tutorial. Android SQLite is the mostly preferred way to store data for android applications. For many applications, SQLite is the apps backbone whether it's used directly or via some third-party wrapper. Below is the final app we will create today using Android SQLite database. ![android sqlite example tutorial](images/android-sqlite-database-example-tutorial-section-1.png) Android SQLite […]

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

Android Alert Dialog using Kotlin

In this tutorial, we'll be discussing Alert Dialogs and implement them in our Android Application using Kotlin. Alert Dialogs Alert Dialog is a window that pops up on the screen. They generally show some information and ask for a user action. There are three core components that build an Alert Dialog. Title Text Message Text […]

Read more
CHAT