Authored by 孙凯

适配android review by shixiang

... ... @@ -75,17 +75,15 @@ export default class HotProducts extends React.Component {
<View style={styles.title}>
<Text style={[styles.text, fontFamilyStyle]}>{this.props.resource.title}</Text>
<View style={styles.thumbnail}>
<TouchableOpacity activeOpacity={0.5} onPress={() => {
this.props.onPressMoreProducts && this.props.onPressMoreProducts(this.props.resource.moreUrl);
}}>
<Image
source={require('../../../../image/btn_more_p.png')}
style={{width: 22, height: 4,backgroundColor:'white',marginLeft:3}}
resizeMode={'contain'}
/>
</TouchableOpacity>
</View>
<TouchableOpacity activeOpacity={0.5} style={styles.thumbnail} onPress={() => {
this.props.onPressMoreProducts && this.props.onPressMoreProducts(this.props.resource.moreUrl);
}}>
<Image
source={require('../../../../image/btn_more_p.png')}
style={{width: 22, height: 4,backgroundColor:'white',marginLeft:3}}
resizeMode={'contain'}
/>
</TouchableOpacity>
</View>
<View style={{
width: width,
... ...