Display Gallery details In part 1, we created an app called SimpleGallery which displays a grid of spaceships images from a web URL. In this task, you add a detail fragment to display the details of a specific property. The detail fragment will sho...
In this tutorial, we will create an app called SimpleGallery which displays a grid of spaceships images from a web URL. This app connects to a web service to retrieve and display the property data. We will use a RecyclerView with a GridLayoutManager ...
In this tutorial, we'll learn how to load and display photos from a web URL. We'll use Glide to display a single image from a web service. Let's get started... Step 1: Create a new project and call it DisplayDataImage Open Android Studio if it is no...
In the previous task, we retrieved data from a web API service JSONPlaceholder and displayed the raw JSON data into our android app. We'll go over the steps covered in the last task but this time we'll parse the JSON response with Moshi library a...
Simple Contact List with ListTile According to the Flutter API reference documentation a ListTile is a single fixed-height row that typically contains some text as well as a leading or trailing icon. Today, we are going to see how to build a simple...
In this tutorial, we'll build an app that connects to a web service to retrieve and display data. We'll be using the Retrofit library to connect to a REST web service on the internet and get a response. For now, we focus on displaying raw JSON. And o...