4

过去两天我一直在尝试解决问题,它在 iOS 上运行良好

constructor(){
  super();

  this.animation = new Animated.Value(0)

  this.state = {
    expanded: false,
  };
}
toggle(){
  let initialValue = this.state.expanded? 1 : 0 ,
     finalValue = this.state.expanded? 0 : 1

  this.setState({
     expanded: !this.state.expanded,
  });

  this.animation.setValue(initialValue)
  Animated.timing(
    this.animation,
    {
      toValue: finalValue,
    }
  ).start();
}

render(){
  return(
    <Animated.View style={{{flex: 1, marginTop: 28, paddingLeft: 25, transform: [{ scale: this.animation }, {perspective: 1000 }]}}}>
     ....
    </Animated.View>

  );
}

这个组件是 child ,在 parent 中这样使用:<FeedBack ref={ref => this.feedback = ref}/>没有任何条件检查是否显示(因为动画比例在构造函数中设置为零,所以不需要)

toggle()按下按钮时,从父级调用该方法。

现在this works fine on iOS,当组件加载时,视图不存在,直到按下按钮(然后缩放)。但是在android组件加载时,视图已经存在。当我按下按钮时,动画视图消失并重新出现(带有动画缩放),随后的切换工作正常。android中的问题是即使initialValue比例为零,视图在第一次加载时仍然存在。

4

1 回答 1

34

一段时间以来,这一直是react-nativeandroid方面的问题(叹气)。似乎将值设置为0剥夺了它的特征,基本上认为它是null,然后在它动画后恢复使用它的实际值> 0

一种解决方法是像这样设置动画 this.animation = new Animated.Value(0.01);

您可以在此处关注问题

于 2017-11-14T06:18:17.503 回答