List View
Using a ListView control inside NativeScript app requires some special attention due to the complexity of the NativeScript implementation of the component, with custom item templates, bindings and so on.
The NativeScript modules provides a custom component which simplifies the way native ListView is used.
Note: Using the
ListView
component inside aScrollView
orScrollView
inside theListView
's items can lead to a poor user interface performance and can reflect the user experience. For avoiding those issues, we should specify the height explicitly for the ListView in the scenario when the ListView is nested inScrollView
and theScrollView
's height - when the component is used inside theListView
. Example 1 (ListView
inScrollView
):<ScrollView> <StackLayout> <ListView height="150" items=""> <ListView.itemTemplate> <!-- ....... --> </ListView.itemTemplate> </ListView> </StackLayout> </ScrollView>
Example 2 (
ScrollView
inListView
):<ListView items=""> <ListView.itemTemplate> <StackLayout class="list-group-item"> <ScrollView height="150" > <!-- ....... --> </ScrollView> </StackLayout> </ListView.itemTemplate> </ListView>
Basics
The example demonstrates how to set a ListView
component in XML page and how to bind its items property to a collection in the view model. In the sample is shown how to define custom UI while using ListView's itemTemplate
.
Note: The ListView's item template can contain only a single root view container.
In the example above, the items source property (myTitles
) is an array and its members are not observable objects. This means that adding or removing array member won't trigger a property change. To update the UI, you will need to explicitly refresh the listview after an item is added or removed while using the refresh
method.
Tip: Instead of manually triggering the UI update with the help of ListView's
refresh
method, NativeScript provides theObservableArray
. Using anObservableArray
for your listview's items surce will make its members an observable objects and adding/removing an array item will automatically update the UI.const ObservableArray = require("tns-core-modules/data/observable-array").ObservableArray; // Change the items source from Array to the NativeScript's ObservableArray const titlesArray = new ObservableArray([ { title: "The Da Vinci Code" }, { title: "Harry Potter and the Chamber of Secrets" }, { title: "The Alchemist" }, { title: "The Godfather" }, { title: "Goodnight Moon" }, { title: "The Hobbit" } ]);
Code Behind
Creating a ListView
programmatically and setting up its items
and UI for each item.
Events
In the example is shown how to set up itemTap
and loadMoreItems
events as well as how to set up the needed callback methods in the Code-Behind.
Multiple Templates Selector Function
The example shows, how to specify the item template selector as a function in the code-behind file
In case your item template selector involves complicated logic which cannot be expressed with an expression, you can create an item template selector function in the code behind of the page in which the ListView resides. The function receives the respective data item, the row index and the entire ListView items collection as parameters. It has to return the the key of the template to be used based on the supplied information.
Multiple Templates
The example shows, how to define multiple item templates and an item template selector in the XML
The itemTemplateSelector
can be an expression specified directly in XML. The context of the expression is the data item for each row.
You can use the special value $index
in the item template selector expression which represents the row index.
<ListView row="1" items="{{ listArray }}" class="list-group" itemTemplateSelector="$index % 2 === 0 ? 'even' : 'odd'">
<ListView.itemTemplates>
<template key="even">
<StackLayout class="list-group-item" style.backgroundColor="white">
<Label text="{{ 'Name: ' + name }}" class="h2" textWrap="true"/>
<Label text="{{ 'Age: ' + age }}"/>
</StackLayout>
</template>
<template key="odd">
<StackLayout class="list-group-item" style.backgroundColor="gray">
<Label text="{{ 'Name: ' + name }}" class="h2" textWrap="true" />
<Label text="{{ 'Age: ' + age }}"/>
</StackLayout>
</template>
</ListView.itemTemplates>
</ListView>
Native Component
Android | iOS |
---|---|
android.widget.ListView | UITableView |