How to display URI images in Xamarin.Forms ListView?
You can display URI images in Xamarin.Forms ListView by loading Image in ItemTemplate.
C#
Defining ContactImage property in Model.
namespace ListViewXamarin
{
public class Contacts : INotifyPropertyChanged
{
private string image;
public string ContactImage
{
get { return this.image; }
set
{
this.image = value;
this.RaisedOnPropertyChanged("ContactImage");
}
}
public event PropertyChangedEventHandler PropertyChanged;
public void RaisedOnPropertyChanged(string _PropertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(_PropertyName));
}
}
}
}
C#
Populating ContactImage in ViewModel with URI.
namespace ListViewXamarin
{
public class ContactsViewModel : INotifyPropertyChanged
{
public ObservableCollection<Contacts> contactsinfo { get; set; }
public void GenerateInfo()
{
Random r = new Random();
for (int i = 0; i < 40; i++)
{
var contact = new Contacts();
contact.ContactImage = ""; //Your Url goes here
contactsinfo.Add(contact);
}
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(string name)
{
if (this.PropertyChanged != null)
this.PropertyChanged(this, new PropertyChangedEventArgs(name));
}
}
}
XAML
Binding ContactImage property with Image Source property.
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ListViewXamarin"
xmlns:syncfusion="clr-namespace:Syncfusion.ListView.XForms;assembly=Syncfusion.SfListView.XForms"
x:Class="ListViewXamarin.MainPage" Padding="{OnPlatform iOS='0,40,0,0'}">
<ContentPage.BindingContext>
<local:ContactsViewModel/>
</ContentPage.BindingContext>
<ContentPage.Content>
<StackLayout>
<syncfusion:SfListView x:Name="listView" ItemSpacing="1" AutoFitMode="Height" ItemsSource="{Binding contactsinfo}">
<syncfusion:SfListView.ItemTemplate >
<DataTemplate>
<ViewCell>
<ViewCell.View>
<Grid x:Name="grid" RowSpacing="0">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="1" />
</Grid.RowDefinitions>
<Grid RowSpacing="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="70" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Frame CornerRadius="2" OutlineColor="Black" Padding="2" Margin="2" HasShadow="True">
<Image HeightRequest="95" WidthRequest="95" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" Aspect="AspectFit">
<Image.Source>
<UriImageSource Uri="{Binding ContactImage}" CacheValidity="1" CachingEnabled="true"/>
</Image.Source>
</Image>
</Frame>
<Grid Grid.Column="1" RowSpacing="1" Padding="10,0,0,0" VerticalOptions="Center">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Text="{Binding ContactName}"/>
<Label Grid.Row="1" Grid.Column="0" Text="{Binding ContactNumber}"/>
</Grid>
</Grid>
</Grid>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</syncfusion:SfListView.ItemTemplate>
</syncfusion:SfListView>
</StackLayout>
</ContentPage.Content>
</ContentPage>
Conclusion
I hope you enjoyed learning about how to display URI images in Xamarin.Forms ListView.
You can refer to our Xamarin.Forms ListView feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!
This code does not work:
I have the following:
ViewModel:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using Xamarin.Forms;
namespace AwesomeApp.ViewModels { public class VMPlayer : INotifyPropertyChanged { public string Name { get; set; } public int id { get; set; }
}
XAML:
I see that the property is being called, the URL created is correct (checked in browser) but no image shows.