6

In our React-native project, We have a screen which is having a parent Scrollview(with pull to refresh) and with in scrollview we have Listview (as chilld view).

In iOS we are able to scroll Scrollview(Parent) as well as Listview(child view).

But in android, We are not able to scroll the Child Listview. When we try to scroll the child Listview, The Parent view is getting scrolled. The child view is not getting the Touch.

Is this related to React-native issue? Can anyone tell me how to solve this issue?

Code snippet:

<ScrollView contentContainerStyle={styles.contentContainerStyle} refreshControl={this.getRefreshControl()}>
      <View> Some header </View>
      <MyComponent> </MyComponent>
      <ListView /* This list view is not scrolling in Android */
        dataSource={dataSource}
        initialListSize={10}
        renderRow={this.renderRow}
        renderSeparator={this.renderSeparator}/>
  </ScrollView>
Tutu
  • 99
  • 1
  • 2
  • 14

6 Answers6

2

You shouldn't put a ListView inside a ScrollView because the ListView class implements its own scrolling and it just doesn't receive gestures because they all are handled by the parent ScrollView. I strongly recommend you to simplify your layout somehow. For example you can add views you want to be scrolled to the ListView as headers or footers.

UPDATE:

Starting from API Level 21 (Lollipop) nested scroll containers are officially supported by Android SDK. There're a bunch of methods in View and ViewGroup classes which provide this functionality. To make nested scrolling work on the Lollipop you have to enable it for a child scroll view by adding android:nestedScrollingEnabled="true" to its XML declaration or by explicitly calling setNestedScrollingEnabled(true).

If you want to make nested scrolling work on pre-Lollipop devices, which you probably do, you have to use corresponding utility classes from the Support library. First you have to replace you ScrollView with NestedScrollView. The latter implements both NestedScrollingParent and NestedScrollingChild so it can be used as a parent or a child scroll container.

But ListView doesn't support nested scrolling, therefore you need to subclass it and implement NestedScrollingChild. Fortunately, the Support library provides NestedScrollingChildHelper class, so you just have to create an instance of this class and call its methods from the corresponding methods of your view class.

0

I've done a ListView which is scrollable if you want !

ListBillScreen.js

export default class ListBillScreen extends React.Component{

  /*Constructor*/

  render() {
  return (

  <ScrollView style = {styles.container}>

    <View style ={styles.header}>
      <Text style = {styles.textHeader}> Title</Text>
    </View>

  <ListView
    style={styles.listView}
    dataSource={this.state.dataSource}
    renderRow={(data) => <Row {...data} navigator={this.props.navigator} />}
    renderSeparator={(sectionId, rowId) => <View key={rowId} style=
    {styles.separator} />}
  />
  <AndroidBackButton
    onPress={this.popIfExists.bind(this)}
  />
</ScrollView>
);

} }

Styles

import { StyleSheet } from 'react-native'
import { Colors, Metrics } from '../../Themes'

export default StyleSheet.create({
  container: {
  paddingTop: 20,
  backgroundColor: Colors.background
},
separator: {
  height: StyleSheet.hairlineWidth,
  backgroundColor: '#8E8E8E',
},
textHeader: {
  color: Colors.steel,
  textAlign: 'center',
},
image: {
  height:64,
  width: 64,
},
listView: {
  paddingTop: 10,
  paddingBottom: 20
},
actionButtonIcon: {
  fontSize: 20,
  height: 22,
  color: 'white',
},
})

It's fully scrollable even if you add some rows =) (My rows are created with a JSon File, with the Row.js)

Enjoy !

Steven Klinger
  • 274
  • 8
  • 21
  • I have also same code almost. But it is working only on iOS. Did you check the code in Android? – Tutu Apr 28 '17 at 10:10
  • If i remove refreshControl property from the scrollview. It is working form me also. But it is not working with RefreshControl which is used for pull to refresh functionality. The one missing in ur code RefreshControl. – Tutu Apr 28 '17 at 11:55
0

Try like this, scrollview inside a scrollview both are scrollable

https://snack.expo.io/rk93R9BCW

Ashrith K S
  • 364
  • 3
  • 12
  • The second version is more flexible since it won't make all the content scroll to top on touch of the child ScrollView – Thomas P. Apr 27 '18 at 17:20
-1

i think ur listview is small . Try setting flex: 1 or height: 587 on your ListView's style property. –

-1

Both listview and scrollview touch events are conflicting.

Try using below code in your fragment/activity

listview.setOnTouchListener(new OnTouchListener() {

            @Override
            public boolean onTouch(View v, MotionEvent event) {
                v.getParent().requestDisallowInterceptTouchEvent(true);
                return false;
            }
        });
Raghu Nagaraju
  • 3,252
  • 1
  • 17
  • 25
-1

You need to set nestedScrollEnabled = true for ListView.

thieumao
  • 9
  • 3