问题:在Android中 input组件,文字会有遮挡
在Android中,input组件默认会有内边距,所以把padding改为0可以解决问题
问题:在Android中 input组件,底部会有条白线
<TextInput
placeholder="搜索关键字"
placeholderTextColor={'#FFFFFF'}
underlineColorAndroid={'transparent'}
style={styles.topInputStyle}
/>
问题:安装新的组件后,有时候会提示找不到reactnative
在ReactNative的github中有这个问题的描述,位置是issues/4968
经过测试推荐解决方法是
- Reset packager cache -rm -fr $TMPDIR/react-*ornode_modules/react-native/packager/packager.sh --reset-cache
问题:react-native run-android总是不成功
or Error:Execution Failed for task ':app:transformClassesWithDexForDebug'.
or Process 'command 'C:\Program Files\Java\jdk1.7.0_67\bin\java.exe''
测试过几个方法,最简单稳定的方案是:用Android Studio直接运行安卓项目,用这种方式打开模拟器。如果遇到问题,在网上也比较好找解决方案。
问题:ReactNative总是出现找不到模块的提示。
推荐安装npm 4.6.1版本,因为npm 5有bug,ReactNative团队推荐使用4.6.1。
问题:Android 中StatusBar的translucent属性无效。
相关可见github的讨论:https://github.com/facebook/react-native/issues/6876
在这个讨论贴中,给出的最优方案是放弃这个属性,自定义一个导航栏,这样可以自行调节高度。
集合贴:
关于UI上的坑总结。
http://www.jianshu.com/p/a59e64443124
原文链接:https://www.f2er.com/react/302846.html