Authored by shixiang

针对android做适配

review 李犇
... ... @@ -5,6 +5,7 @@ import ReactNative, {
View,
Text,
Image,
Platform,
ListView,
StyleSheet,
Dimensions,
... ... @@ -174,13 +175,13 @@ let gpSoldOutImageHeight = Math.ceil(25 * DEVICE_WIDTH_RATIO);
let styles = StyleSheet.create({
container: {
width: rowWidth,
height: rowHeight,
height: Platform.OS === 'ios'?rowHeight:rowHeight+4,
marginTop: rowMarginTop,
marginBottom: rowMarginBottom,
},
rowContainer: {
width: rowWidth,
height: rowHeight,
height: Platform.OS === 'ios'?rowHeight:rowHeight+4,
},
imageContainer: {
... ...