• react-native中使用滚动视图


    ScrollView是一个通用的可滚动的容器,你可以在其中放入多个组件和视图,而且这些组件并不需要是同类型的。
    ScrollView 不仅可以垂直滚动,还能水平滚动(通过horizontal属性来设置)。
    先看效果gif图

    代码如下:

    import React, { Component } from 'react';
    import { AppRegistry, ScrollView, Image, Text } from 'react-native';
    
    export default class IScrolledDownAndWhatHappenedNextShockedMe extends Component {
      render() {
          return (
            <ScrollView>
              <Text style={{fontSize:96}}>Scroll me plz</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:96}}>If you like</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:96}}>Scrolling down</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:96}}>What's the best</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:96}}>Framework around?</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:80}}>React Native</Text>
            </ScrollView>
        );
      }
    }
    

    ScrollView适合用来显示数量不多的滚动元素。放置在ScrollView中的所有组件都会被渲染,哪怕有些组件因为内容太长被挤出了屏幕外。
    如果你需要显示较长的滚动列表,那么应该使用功能差不多但性能更好的FlatList组件。

  • 相关阅读:
    AQS简介
    原子类案例
    保证线程安全的三个方面
    CAS无锁机制
    乐观锁与悲观锁
    读写锁简介
    重入锁简介
    并发队列Queue
    报错Cannot resolve com.mysq.jdbc.Connection.ping method. Will use 'SELECT 1' instead 问题记录
    Springboot中MyBatis 自动转换 map-underscore-to-camel-case
  • 原文地址:https://www.cnblogs.com/smart-girl/p/10642747.html
Copyright © 2020-2023  润新知