Showing posts with label CollectionView. Show all posts
Showing posts with label CollectionView. Show all posts
Delpin Susai Raj Thursday, 9 May 2019

Xamarin.Forms - CollectionView

In this blog post, you will learn how to use CollectionView instead of ListView in Xamarin.Forms.

Introduction

Xamarin.Forms code runs on multiple platforms - each of which has its own filesystem.
This means that reading and writing files is most easily done using the native file APIs on each platform. Alternatively, embedded resources are a simpler solution to distribute data files with an app.

CollectionView

CollectionView is introduce in the Xamarin.Forms 4.0 pre-releases. CollectionView is a view for presenting lists of data using different layout specifications.
It aims to provide a more flexible, and performant alternative to ListView.
  • CollectionView supports single and multiple selection.
  • CollectionView has a flexible layout model, which allows data to be presented vertically or horizontally.
Note:
  • CollectionView is only available on iOS and Android.
More information about Collection View
https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/collectionview/

Prerequisites
  • Visual Studio 2017 or later (Windows or Mac)
Setting up a Xamarin.Forms Project

Start by creating a new Xamarin.Forms project. You’ll learn more by going through the steps yourself.

Visual Studio 2019 has more options in the opening window. Clone or check out the code from any repository or, open a project or solution for your computer.

Now, you need to click "Create a new project".

Now, filter by Project Type: Mobile

Choose the Mobile App (Xamarin. forms) project under C# and Mobile.

Name your app. You probably want your project and solution to use the same name as your app. Put it on your preferred location for projects and click "Create".

Now, select the blank app and target platforms - Android, iOS and Windows (UWP).

Subsequently, go to the solution. In there, you get all the files and sources of your project (.NET Standard). Now, select the XAML page and double-click to open the MainPage.Xaml page.

You now have a basic Xamarin.Forms app. Click the Play button to try it out.

Note: 

Before you initialize Xamarin.Forms in your MainActivity.cs and AppDelegate. Add following Flag

Android Implementation

MainActivity.cs

iOS Implementation

AppDelegate.cs

Setting up the User Interface

Now, Implement the collectionview with data binding.

CollectionView ItemSource

Now, add ItemSource to CollectionView

Click the "Play" button to try it out.

I hope you have understood how to use CollectionView instead of ListView in Xamarin.Forms..

Thanks for reading. Please share your comments and feedback. Happy Coding :)