ListViewCachingStrategy Enum

Definition

Enumerates caching strategies for a ListView.

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum ListViewCachingStrategy
type ListViewCachingStrategy = 
Inheritance
ListViewCachingStrategy
Attributes

Fields

RecycleElement 1

Indicates that unneeded cells will have their binding contexts updated to that of a cell that is needed.

RecycleElementAndDataTemplate 3

Indicates that, in addition to the behavior specified by RecycleElement, DataTemplate objects that are selected by a DataTemplateSelector are cached by the data template type.

RetainElement 0

Indicates that for every item in the List View's ItemsSource property, a single unique element will be constructed from the DataTemplate.

Remarks

Application developers can specify one of these values when constructing a ListView to determine whether the List View will minimize their memory footprint and speed execution by recycling list cells, or will instead generate a cell for every item in the list. Currently, the default behavior is to retain item data in their generated cells when they are not needed. (Items are not needed, for example, when they are far enough off screen that their display is not imminent.) This behavior corresponds to a value of RetainElement. For performance reasons, it is likely that the default behavior will be changed to RecycleElement in a future release. In the meantime, for memory and performance reasons, app developers should specify RecycleElement when constructing a new List View.

The performance advantage of RecycleElement is so great that application developers have been provided with a XAML syntax shortcut for initializing List Views. Instead of x:TypeArguments syntax that specifies a parameter for the ListView(ListViewCachingStrategy) constructor, XAML for Xamarin.Forms provides a XAML attribute for a non-existent property that corresponds to the caching strategy argument of the constructor. Application developers can set the CachingStrategy attribute to either of the RecycleElement (preferred) or RetainElement values to choose a caching strategy. For example:

<ListView CachingStrategy="RecycleElement" >
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<!-- ... -->
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>

Applies to