Skip to main content

React Native ListView

React Native ListView is a view component which contains the list of items and displays in a vertical scrollable list. The minimum API to create list view is ListView.DataSource. It populates a simple array of data blobs, and instantiate a ListView component with data source and a renderRow callback. The renderRow takes a blob from data array and returns a renderable component.

Note: The ListView component has deprecated. To implement the list component use new list components FlatList or SectionList.

React Native ListView Example 1

Let's create an example of ListView component. In this example, we create a data source, and fill it with an array of data blobs. Create a ListView component using that array as its data source, and pass it in its renderRow callback. The renderRow is a function which returns a component which renders the row.
  1. import React, { Component } from 'react'  
  2. import { Text, ListView, StyleSheet } from 'react-native'  
  3.   
  4. export default class MyListComponent extends Component {  
  5.     constructor() {  
  6.         super();  
  7.         const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});  
  8.         this.state = {  
  9.             dataSource: ds.cloneWithRows(['Android','iOS''Java','Php''Hadoop',  
  10.                 'Sap''Python','Ajax''C++',  
  11.                 'Ruby''Rails','.Net''Perl']),  
  12.         };  
  13.     }  
  14.   
  15.     render() {  
  16.         return (  
  17.             <ListView  
  18.                 dataSource={this.state.dataSource}  
  19.                 renderRow={  
  20.                     (rowData) =>  
  21.                         <Text style={{fontSize: 20}}>{rowData}</Text>}  
  22.             />  
  23.         );  
  24.     }  
  25. }  

Output:

React Native ListView
In the above code, we create an instance of ListViewDataSource in the constructor. The ListViewDataSource is a parameter and accept an argument which contain any of these four:
  • getRowData(dataBlob, sectionID, rowID)
  • getSectionHeaderData(dataBlob, sectionID)
  • rowHasChanged(previousRowData, nextRowData)
  • sectionHeaderHasChanged(previousSectionData, nextSectionData)

Add separation and perform action on ListView items

Separation is added to provide a separate block and for better display of list items. The props renderSeparator is used to add separator among the items (data) of ListView.
Implement onPress props over Text to perform an action on clicking the list items. Here, we generate an alert message and display the list items on which a user click.
  1. import React from 'react';  
  2. import { View, ListView, StyleSheet, Text,Alert} from 'react-native';  
  3.   
  4. class ListViewDemo extends React.Component {  
  5.     constructor(props) {  
  6.         super(props);  
  7.   
  8.         const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});  
  9.         this.state = {  
  10.             dataSource: ds.cloneWithRows([ "Android",  
  11.                 "iOS","Java","Swift",  
  12.                 "Php","Hadoop","Sap",  
  13.                 "Python","Ajax""C++",  
  14.                 "Ruby""Rails",".Net",  
  15.                 "Perl",  
  16.             ])  
  17.         };  
  18.     }  
  19.     //handling onPress action  
  20.     getListViewItem = (rowData) => {  
  21.         Alert.alert(rowData);  
  22.     }  
  23.     render() {  
  24.         return (  
  25.                 <ListView  
  26.                     style={styles.container}  
  27.                     dataSource={this.state.dataSource}  
  28.                     renderRow={(rowData) =>  
  29.                        <Text style={styles.rowViewContainer}  
  30.                              onPress={this.getListViewItem.bind(this, rowData)}>{rowData}  
  31.                        </Text>  
  32.                     }  
  33.                     renderSeparator={(sectionId, rowId) =>  
  34.                         <View key={rowId} style={styles.separator} />}//adding separation  
  35.                 />  
  36.         );  
  37.     }  
  38. }  
  39.   
  40. const styles = StyleSheet.create({  
  41.     container: {  
  42.         flex: 1,  
  43.         backgroundColor: "#e5e5e5"  
  44.     },  
  45.     separator: {  
  46.         height: 0.5, width: "100%", backgroundColor: "#000"  
  47.     },  
  48.     rowViewContainer: {  
  49.         flex: 1,  
  50.         paddingRight: 15,  
  51.         paddingTop: 13,  
  52.         paddingBottom: 13,  
  53.         borderBottomWidth: 0.5,  
  54.         borderColor: '#c9c9c9',  
  55.         flexDirection: 'row',  
  56.         alignItems: 'center',  
  57.         fontSize: 20,  
  58.         marginLeft: 10,  
  59.     },  
  60. });  
  61.   
  62. export default ListViewDemo;  
Output:
React Native ListView React Native ListView

Comments

  1. Really Impressive.
    Read all the details with the sample code that you mentioned in the blog regarding list view in React Native. After checking all the data I believe that nothing could be more expressive then this blog.
    I was searching for the best react native development company and got your blog.
    Thanks for sharing for such a great blog.

    ReplyDelete

Post a Comment

Thank You.

Popular Posts

Reloading UITableView while Animating Scroll in iOS 11

Reloading UITableView while Animating Scroll Calling  reloadData  on  UITableView  may not be the most efficient way to update your cells, but sometimes it’s easier to ensure the data you are storing is in sync with what your  UITableView  is showing. In iOS 10  reloadData  could be called at any time and it would not affect the scrolling UI of  UITableView . However, in iOS 11 calling  reloadData  while your  UITableView  is animating scrolling causes the  UITableView  to stop its scroll animation and not complete. We noticed this is only true for scroll animations triggered via one of the  UITableView  methods (such as  scrollToRow(at:at:animated:) ) and not for scroll animations caused by user interaction. This can be an issue when server responses trigger a  reloadData  call since they can happen at any moment, possibly when scroll animation is occurring. Example of s...

What are the Alternatives of device UDID in iOS? - iOS7 / iOS 6 / iOS 5 – Get Device Unique Identifier UDID

Get Device Unique Identifier UDID Following code will help you to get the unique-device-identifier known as UDID. No matter what iOS user is using, you can get the UDID of the current iOS device by following code. - ( NSString *)UDID { NSString *uuidString = nil ; // get os version NSUInteger currentOSVersion = [[[[[UIDevice currentDevice ] systemVersion ] componentsSeparatedByString: @" . " ] objectAtIndex: 0 ] integerValue ]; if (currentOSVersion <= 5 ) { if ([[ NSUserDefaults standardUserDefaults ] valueForKey: @" udid " ]) { uuidString = [[ NSUserDefaults standardDefaults ] valueForKey: @" udid " ]; } else { CFUUIDRef uuidRef = CFUUIDCreate ( kCFAllocatorDefault ); uuidString = ( NSString *) CFBridgingRelease ( CFUUIDCreateString ( NULL ,uuidRef)); CFRelease (uuidRef); [[ NSUserDefaults standardUserDefaults ] setObject: uuidString ForKey: @" udid " ]; [[ NSUserDefaults standardUserDefaults ] synchro...

Xcode & Instruments: Measuring Launch time, CPU Usage, Memory Leaks, Energy Impact and Frame Rate

When you’re developing applications for modern mobile devices, it’s vital that you consider the performance footprint that it has on older devices and in less than ideal network conditions. Fortunately Apple provides several powerful tools that enable Engineers to measure, investigate and understand the different performance characteristics of an application running on an iOS device. Recently I spent some time with these tools working to better understand the performance characteristics of an eCommerce application and finding ways that we can optimise the experience for our users. We realised that applications that are increasingly performance intensive, consume excessive amounts of memory, drain battery life and feel uncomfortably slow are less likely to retain users. With the release of iOS 12.0 it’s easier than ever for users to find applications that are consuming the most of their device’s finite amount of resources. Users can now make informed decisions abou...