Image使用本地资源不显示问题:
看看官方说法:
Any time you add a new resource to your drawables you will need to re-build your app by running react-native run-android before you can use it - reloading the JS is not enough.
也就是说当你新加入了资源后要重新打包并执行 react-native run-android命令
猜想:因为Android有一个独有的资源管理系统,它会将资源索引改成id对应文件名的方式放在resc文件里,最后打成安装包。
问题二:
React Native ScollView不能滑动的问题
ScrollView是必须要设置height的
那么下一个问题来了。怎么在Css中表示matchparent?
我试了一下100%,不过好像并没有什么用
解决办法
var Dimensions = require('Dimensions');
var windowSize = Dimensions.get('window');
scrollView: {
backgroundColor: '#6A85B1',height: windowSize.height-25,},
为什么要减25呢。你得到的高度是屏幕的高度,要得到ScrollView的高度就要减去屏幕最顶部通知栏的高度。