Creating a custom list in Android with Xamarin
This tutorial will show you how to create a detailed list for an Android app using your own custom list design. For this project, we will create a list of …
This tutorial will show you how to create a detailed list for an Android app using your own custom list design. For this project, we will create a list of …
A Toast is a small message that is temporarily displayed at the bottom of a screen in Android apps and is usually used to notify the user that something has …
This tutorial will show you how to add and use ToggleButton elements for Android apps in Xamarin. ToggleButtons are like on/off switches that only have two possible states and can …
This tutorial explains how to add radio buttons to an Android app and make decisions based on which option the user selects. Radio buttons allow the user to select one item from …
In the tutorials so far, we have been designing Android app screens in Xamarin using a Linear Layout. A Linear Layout basically arranges buttons, text views, text fields and other …
This tutorial will show you how to add a thumbnail image to each row of the Cities list in the iOS List app we made in the previous two tutorials. …
In this tutorial, we will look at how to extend the iOS List app we made in the previous tutorial by adding a Details screen that will display more details …
In this tutorial, we will look at how to create a list app for iOS. The example used in this tutorial will be a list of cities. When the name …
In this tutorial you will learn how to create an iOS app that can pass data from one screen to another. This will be demonstrated in an example app that …
This tutorial explains how to play audio files in the background in an iOS app. An audio file can play when a screen loads or when an event occurs (such …
This tutorial explains how to play audio in an Android app made in Xamarin. The audio can be played when a screen loads or when an event occurs such as …
In this tutorial you will learn how to create an Android app that can pass data from one screen to another. This will be demonstrated in an example app that …
This tutorial explains how to add click events to items on a list using an Android ListView in Xamarin. In this example, we have a list containing cities in Australia …
In this tutorial you will learn how to add a ListView in your Android app using Xamarin. ListView elements allow you to create a scrollable list where each list item …
This tutorial explains how to add more than one screen to your iOS app and link screens together using buttons. We will use a simple example for this tutorial as …