React-native <view>组件&#34;提升&#34;风格造成丑陋的阴影

时间:2016-06-16 20:35:26

标签: android-layout react-native android-elevation

高程样式属性为Android 5.0 +启用了框阴影。

我做了一些不寻常的事情&#39;提升&#39;在这里引起丑陋,可以在下面的截图中看到?另外,有没有办法定义阴影偏移?

模拟器运行6.0(> 5.0),因此不是问题。我正在运行react-native 25.1。

  "dependencies": {
    "react": "^0.14.8",
    "react-native": "^0.25.1",
    "react-native-gcm-android": "^0.2.0",
    "react-native-material-design": "^0.3.5",
    "react-native-system-notification": "^0.1.10",
    "react-redux": "^4.4.5",
    "redux": "^3.5.2"
  }

Here's react-native's documentation for View component styling

这是我的渲染方法:

  render() {
    return (
      <ListView
        dataSource={alertData}
        renderRow={(rowData) =>
          <View style={style.cardContainer}>
            <Text>{rowData.blah}</Text>
            <Text>{"#" + rowData.foo}</Text>
            <Text>{rowData.blah}</Text>
            <Text>{rowData.foo}</Text>
            <Text>{rowData.baz}</Text>
          </View>
        }
      />
    );
  }

风格宣言:

var style = StyleSheet.create({
  cardContainer : {
    elevation   : 3,
    flex        : 1,
    margin      : 10,
    padding     : 10,
    borderWidth : 2,
    borderColor : beeStyles.colors.lightGray
  }
});

它以某种方式导致了......

enter image description here

2 个答案:

答案 0 :(得分:29)

缺少的部分是backgroundColor。将backgroundColor : '<anything>'样式添加到View容器会使那些奇怪的内部阴影消失。

答案 1 :(得分:0)

您可以添加背景颜色:backgroundColor : '#000';

一个很好用的组件:

import React from 'react'
import { View, StyleSheet, ViewPropTypes } from 'react-native'
import PropTypes from 'prop-types'


const SingleSidedShadowCard = ({ children, style }) => (
    <View style={[ styles.container, style ]}>
        { children }
    </View>
);

const styles = StyleSheet.create({
    container:{
        overflow: 'hidden',
        paddingBottom: 5,
    }
});

SingleSidedShadowCard.propTypes = {
    children: PropTypes.element,
    style: ViewPropTypes.style,
};

export default SingleSidedShadowCard;