小编Mey*_*ehr的帖子

Android:滚动视图,其中包含textInput不滚动

我有一个scrollView包含太多的textInput。一切正常,直到我添加textAlign: 'right'到TextInput样式。之后,ScrollView无法响应滚动。这个问题只是在android中发生的,在iOS中按预期工作。我在Snake.expo中添加了一个简单的代码

  render() {
    let TextInput2 = (
      <TextInput
        style={{
          flex: 1,
          textAlign: 'right',
          height: 50
        }}
        placeholder="placeholder"
      />
    );
    return (
      <ScrollView>
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
        {TextInput2}
      </ScrollView>
    );
  }
Run Code Online (Sandbox Code Playgroud)

android textinput scrollview react-native

5
推荐指数
1
解决办法
869
查看次数

标签 统计

android ×1

react-native ×1

scrollview ×1

textinput ×1