You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constHello=props=><View><Text>Hello</Text></View>;// Not working<TouchableWithoutFeedbackonPress={()=>alert('working')}><Hello/></TouchableWithoutFeedback>// Working<TouchableWithoutFeedbackonPress={()=>alert('working')}><View><Hello/></View></TouchableWithoutFeedback>
Collection the react native questions.
1. TouchableWithoutFeedback onPress 不生效?
原因分析: TouchableWithoutFeedback 需要 <View> 作为直接子集,如果children不是<View />,则不会生效,举例如下:
2. Android机型,在长列表下,部分远程图片不显示(确认请求成功、图片没问题,Image组件已经设置固定宽高,加载的图片尺寸远大于容器大小)
原因分析: 由于图像远大于视图,所以在加载该类图片时,容易在低端机型上导致内存不足。解决办法是设置
resizeMethod=resize
(默认为auto)。详情,请参考:https://facebook.github.io/react-native/docs/image.html#resizemethodThe text was updated successfully, but these errors were encountered: