14

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

我是否在这里对“海拔”做了一些不寻常的事情,以导致下面的屏幕截图中可以看到的丑陋?另外,有没有办法定义阴影偏移?

模拟器正在运行 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"
  }

这是查看组件样式的 react-native 文档

这是我的渲染方法:

  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
  }
});

不知何故,它导致了这个......

在此处输入图像描述

4

2 回答 2

45

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

于 2016-06-17T12:49:04.130 回答
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;
于 2021-08-11T14:33:09.570 回答