170

我想向视图添加全屏图像,所以我编写了这段代码

return (
    <View style={styles.container}>
        <Image source={require('image!egg')}  style={styles.backgroundImage}/>
    </View>
)

并将样式定义为

var styles = StyleSheet.create({
container: {
     flex: 1,
     justifyContent: 'center',
     alignItems: 'center',
     backgroundColor: '#F5FCFF',
     flexDirection: 'column',
},
     backgroundImage:{
     width:320,
     height:480,
   }
...

但是这样我应该如何找到实际的 iPhone 屏幕尺寸?

我已经看到了一个 API 来访问像素密度,但没有关于屏幕尺寸...

4

28 回答 28

191

(这已被弃用,现在您可以使用ImageBackground

我就是这样做的。主要交易是摆脱静态固定尺寸。

class ReactStrap extends React.Component {
  render() {
    return (
      <Image source={require('image!background')} style={styles.container}>
        ... Your Content ...
      </Image>
    );
  }
}

var styles = StyleSheet.create({
  container: {
    flex: 1,
    // remove width and height to override fixed static size
    width: null,
    height: null,
  }
};
于 2015-09-06T22:38:29.573 回答
125

您可以flex: 1在元素上使用样式<Image>以使其充满整个屏幕。然后,您可以使用其中一种图像调整大小模式使图像完全填充元素:

<Image source={require('image!egg')} style={styles.backgroundImage} />

风格:

import React from 'react-native';

let { StyleSheet } = React;

let styles = StyleSheet.create({
  backgroundImage: {
    flex: 1,
    resizeMode: 'cover', // or 'stretch'
  }
});

我很确定您可以摆脱<View>图像的包装,这将起作用。

于 2015-03-28T22:42:22.103 回答
44

注意:此解决方案已过时。请 参阅https://facebook.github.io/react-native/docs/images.html#background-image-via-nesting

试试这个解决方案。它是官方支持的。我刚刚对其进行了测试,并且可以完美运行。

var styles = StyleSheet.create({
  backgroundImage: {
    flex: 1,
    alignSelf: 'stretch',
    width: null,
  }
});

至于将其用作背景图像,只需执行以下操作。

<Image style={styles.backgroundImage}>
  <View>
    <Text>All your stuff</Text>
  </View>
</Image>
于 2015-10-20T16:40:34.250 回答
26

2018 年 3 月更新 不推荐使用 ImageBackground

  <ImageBackground 
          source={{uri: 'https://images.pexels.com/photos/89432/pexels-photo-89432.jpeg?h=350&dpr=2&auto=compress&cs=tinysrgb'}}
          style={{ flex: 1,
            width: null,
            height: null,
            }}
        >
       <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
        <Text>Your Contents</Text>
       </View>

 </ImageBackground >
于 2018-03-06T23:21:02.480 回答
21

我使用 react-native version = 0.19.0 尝试了其中几个答案,但对 android 无济于事。

出于某种原因,我的样式表中的 resizeMode 不能正常工作?但是,当样式表有

backgroundImage: {
flex: 1,
width: null,
height: null,
}

并且,在 Image 标记中,我指定了 resizeMode:

<Image source={require('path/to/image.png')} style= {styles.backgroundImage} resizeMode={Image.resizeMode.sretch}>

它工作得很好!如上所述,您也可以使用 Image.resizeMode.cover 或包含。

希望这可以帮助!

于 2016-02-26T00:04:46.197 回答
15

更新到 ImageBackground

由于<Image />作为容器使用已被弃用一段时间,所有答案实际上都遗漏了一些重要的东西。为了正确使用,请选择<ImageBackground />withstyle imageStyleprop。将所有与图像相关的样式应用于imageStyle.

例如:

<ImageBackground
    source={yourImage}
    style={{
      backgroundColor: '#fc0',
      width: '100%', // applied to Image
      height: '100%' 
    }}
    imageStyle={{
      resizeMode: 'contain' // works only here!
    }}
>
    <Text>Some Content</Text>
</ImageBackground>

https://github.com/facebook/react-native/blob/master/Libraries/Image/ImageBackground.js

于 2018-08-11T07:46:07.697 回答
13

根据Braden Rockwell Napier回答,我制作了这个BackgroundImage组件

背景图片.js

import React, { Component } from 'react'
import { Image } from 'react-native'

class BackgroundImage extends Component {
  render() {
    const {source, children, style, ...props} = this.props
    return (
      <Image source={ source }
             style={ { flex: 1, width: null, height: null, ...style } }
             {...props}>
        { children }
      </Image>
    )
  }
}
BackgroundImage.propTypes = {
  source: React.PropTypes.object,
  children: React.PropTypes.object,
  style: React.PropTypes.object
}
export default BackgroundImage

someWhereInMyApp.js

 import BackgroundImage from './backgroundImage'
 ....
 <BackgroundImage source={ { uri: "https://facebook.github.io/react-native/img/header_logo.png" } }>
    <Text>Test</Text>
 </BackgroundImage>
于 2016-06-08T14:45:19.190 回答
12

如果您想将其用作背景图片,则需要使用2017 年 6 月末在 v0.46 中引入的新<ImageBackground>组件。它支持嵌套,但很快不会。<Image>

这是提交摘要:

我们正在移除对组件内嵌套视图的支持。我们决定这样做是因为拥有此功能使得支持 intrinsinc content size变得<Image>不可能;所以当过渡过程完成时,不需要明确指定图像大小,可以从实际图像位图中推断出来。

这是第 0 步。

是一个非常简单的替代品,它通过非常简单的样式实现了这个功能。如果你想在里面放东西,请使用而不是。

于 2017-07-06T04:16:57.233 回答
11

哦上帝最后我找到了 React-Native V 0.52-RC 和 native-base 的好方法:

您的内容标签应该是这样的: //======================================== ========================

<Content contentContainerStyle={styles.container}>
    <ImageBackground
        source={require('./../assets/img/back.jpg')}
        style={styles.backgroundImage}>
        <Text>
            Some text here ...
        </Text>
    </ImageBackground>
</Content>

你的基本风格是://========================================== =====================

container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center'
},
backgroundImage:{
    flex : 1,
    width : '100%'
}

它运作良好的朋友......玩得开心

于 2018-01-10T13:21:52.327 回答
8
import { ImageBackground } from "react-native";
<ImageBackground
     style={{width: '100%', height: '100%'}}
     source={require('../assets/backgroundLogin.jpg ')}> //path here inside
    <Text>React</Text>
</ImageBackground>
于 2019-06-01T07:42:09.077 回答
5

对我来说这很好用,我使用 ImageBackground 设置背景图像:

import React from 'react';
import { SafeAreaView, StyleSheet, ScrollView, View, Text, StatusBar, Image, ImageBackground } from 'react-native';
const App: () => React$Node = () => {
return (
    <>
      <StatusBar barStyle="dark-content" />
      <View style={styles.container}> 
      <ImageBackground source={require('./Assets.xcassets/AppBackGround.imageset/2x.png')} style={styles.backgroundImage}>
        <View style={styles.sectionContainer}>
              <Text style={styles.title}>Marketing at the speed of today</Text>
        </View>
      </ImageBackground>
      </View>
    </>
  );
};


const styles = StyleSheet.create({
  container: {
    flex: 1,
    fontFamily: "-apple-system, BlinkMacSystemFont Segoe UI",
    justifyContent: "center",
    alignItems: "center",
  },
  backgroundImage: {
    flex: 1,
    resizeMode: 'cover',
    height: '100%',
    width: '100%'
  },
  title:{
    color: "#9A9A9A",
    fontSize: 24,
    justifyContent: "center",
    alignItems: "center",
  },
sectionContainer: {
    marginTop: 32,
    paddingHorizontal: 24,
  },
});

export default App;
于 2020-03-29T17:26:45.783 回答
4

最新截至 17 年 10 月 (RN >= .46)

import React from 'react';
import { 
  ...
  ImageBackground,
} from 'react-native';

render() {
  return (
    <ImageBackground source={require('path/to/img')} style={styles.urStyle}>
    </ImageBackground>
  );
}

http://facebook.github.io/react-native/releases/0.49/docs/images.html#background-image-via-nesting

于 2017-10-11T05:30:39.070 回答
4

由于 0.14 这种方法不起作用,所以我构建了一个静态组件,这将使你们变得简单。您可以将其粘贴或将其作为组件引用。

这应该是可重复使用的,它允许您添加额外的样式和属性,就好像它是一个标准<Image />组件一样

const BackgroundImage = ({ source, children, style, ...props }) => {
  return (
      <Image
        source={source}
        style={{flex: 1, width: null, height: null, ...style}}
        {...props}>
        {children}
      </Image>
  );
}

只需将其粘贴,然后您就可以像使用图像一样使用它,它应该适合它所在视图的整个大小(因此,如果它是顶视图,它将填满您的屏幕。

<BackgroundImage source={require('../../assets/backgrounds/palms.jpg')}>
    <Scene styles={styles} {...store} />
</BackgroundImage>

单击此处查看预览图像

于 2015-12-06T20:23:56.720 回答
3

要处理这个用例,您可以使用与<ImageBackground>具有相同道具的组件,<Image>并添加您想要在其上分层的任何子组件。

例子:

return (
  <ImageBackground source={...} style={{width: '100%', height: '100%'}}>
    <Text>Inside</Text>
  </ImageBackground>
);

更多信息:图片背景 | 反应原生

请注意,您必须指定一些宽度和高度样式属性。

于 2019-12-20T11:56:00.183 回答
2

实现背景的最简单方法:

<ImageBackground style={styles.container} source={require('../../images/screen_login.jpg')}>
  <View style={styles.logoContainer}>
    <Image style={styles.logo}
      source={require('../../images/logo.png')}
    />
  </View> 
  <View style={styles.containerTextInput}>
    < LoginForm />
  </View>   
</ImageBackground>

const styles = StyleSheet.create({
  container: {
    flex: 1,
    //   backgroundColor:"#0984e3"
  },
  containerTextInput: {
    marginTop: 10,
    justifyContent: 'center'
  },

  logoContainer: {
    marginTop: 100,
    justifyContent: 'center',
    alignItems: 'center'
  },
  logo: {
    height: 150,
    width: 150
  }
});
于 2018-06-26T19:52:17.450 回答
2

您需要确保您的 Image 具有 resizeMode={Image.resizeMode.contain} 或 {Image.resizeMode.stretch} 并将图像样式宽度设置为 null

<Image source={CharacterImage} style={{width: null,}} resizeMode={Image.resizeMode.contain}/>
于 2015-11-19T19:29:54.373 回答
2

import React from 'react';
import { 
  ...
  StyleSheet,
  ImageBackground,
} from 'react-native';

render() {
  return (
    
  <ImageBackground source={require('path/to/img')} style={styles.backgroundImage} >
      <View style={{flex: 1, backgroundColor: 'transparent'}} />
      <View style={{flex: 3,backgroundColor: 'transparent'}} >
  </ImageBackground>
    
  );
}

const styles = StyleSheet.create({
  backgroundImage: {
        flex: 1,
        width: null,
        height: null,
        resizeMode: 'cover'
    },
});

于 2020-08-28T08:22:28.697 回答
2

如果要添加背景图像,可以使用,但首先必须从“react-native”导入,如下所示:

import {ImageBackground} from 'react-native';

然后:

    export default function App() {
    
    return (
        <View style={styles.body}>

            <ImageBackground source={require('./path/to/yourimage')} style={styles.backgroungImage}>
                <View style={styles.container}>Hello world!
                </View>
            </ImageBackground>
        </View>
    );
}

    const styles = StyleSheet.create({
    backgroungImage: {
    flex: 1,
    maxWidth: '100%',
  }
});
于 2020-07-29T08:59:29.393 回答
2

(RN >= .46)

如果要在图像顶部呈现内容,则组件不能包含子级,请考虑使用绝对定位。

或者你可以使用ImageBackground

import React from 'react';
import { 
  ...
  StyleSheet,
  ImageBackground,
} from 'react-native';

render() {
  return (
    
  <ImageBackground source={require('path/to/img')} style={styles.backgroundImage} >
      <View style={{flex: 1, backgroundColor: 'transparent'}} />
      <View style={{flex: 3,backgroundColor: 'transparent'}} >
  </ImageBackground>
    
  );
}

const styles = StyleSheet.create({
  backgroundImage: {
        flex: 1,
        width: null,
        height: null,
        resizeMode: 'cover'
    },
});

于 2017-12-25T10:20:16.457 回答
2

值为 null 的宽度和高度对我不起作用,然后我想使用顶部、底部、左侧和右侧的位置并且它起作用了。例子:

bg: {
        position: 'absolute',
        top: 0,
        bottom: 0,
        left: 0,
        right: 0,
        resizeMode: 'stretch',
},

和 JSX:

<Image style={styles.bg} source={{uri: 'IMAGE URI'}} />
于 2017-01-16T15:28:27.587 回答
1

您还可以将图像用作容器:

render() {
    return (
        <Image
            source={require('./images/background.png')}
            style={styles.container}>
            <Text>
              This text will be on top of the image
            </Text>
        </Image>
    );
}


const styles = StyleSheet.create({
    container: {
        flex: 1,
        width: undefined,
        height: undefined,
        justifyContent: 'center',
        alignItems: 'center',
      },
});
于 2017-07-12T19:19:09.710 回答
1
import React, { Component } from 'react';
import { Image, StyleSheet } from 'react-native';

export default class App extends Component {
  render() {
    return (
      <Image source={{uri: 'http://i.imgur.com/IGlBYaC.jpg'}} style={s.backgroundImage} />
    );
  }
}

const s = StyleSheet.create({
  backgroundImage: {
      flex: 1,
      width: null,
      height: null,
  }
});

你可以试试:https ://sketch.expo.io/B1EAShDie (来自:github.com/Dorian/sketch-reactive-native-apps

文档:https ://facebook.github.io/react-native/docs/images.html#background-image-via-nesting

于 2017-03-16T06:54:32.933 回答
1

我听说必须使用 BackgroundImage,因为将来您应该无法嵌套 Image 标签。但我无法让 BackgroudImage 正确显示我的背景。我所做的是将我的图像嵌套在 View 标记中,并设置外部 View 和图像的样式。键将宽度设置为空,并将 resizeMode 设置为“拉伸”。下面是我的代码:

import React, {Component} from 'react';
import { View, Text, StyleSheet, Image} from 'react-native';

export default class BasicImage extends Component {
	constructor(props) {
	  super(props);

	  this.state = {};
	}

	render() {
		return (
			<View style={styles.container}>
	      <Image 
	        source={this.props.source}
	        style={styles.backgroundImage}
	      />
      </View>
		)
	}
}

const styles = StyleSheet.create({   
		container: {
			flex: 1,
			width: null,
			height: null,
			marginBottom: 50
		},
    text: {
    		marginLeft: 5,
    		marginTop: 22,
    		fontFamily: 'fontawesome',
        color: 'black',
        fontSize: 25,
        backgroundColor: 'rgba(0,0,0,0)',
    },
		backgroundImage: {
			flex: 1,
			width: null,
			height: null,
			resizeMode: 'stretch',
		}
});

于 2017-10-01T19:40:00.590 回答
1

<ImageBackground>正如antoine129所说的那样使用。<Image>现在不推荐与孩子一起使用。

class AwesomeClass extends React.Component {
  render() {
    return (
      <ImageBackground source={require('image!background')} style={styles.container}>
        <YourAwesomeComponent/>
      </ImageBackground>
    );
  }
}

var styles = StyleSheet.create({
  container: {
    flex: 1,
  }
};
于 2017-10-08T07:11:03.560 回答
1

如果你还没有解决它,React Native v.0.42.0 有 resizeMode

<Image style={{resizeMode: 'contain'}} source={require('..img.png')} />
于 2017-03-10T04:24:59.867 回答
0

我使用此代码解决了我的背景图像问题。

import React from 'react';
import { StyleSheet, Text, View,Alert,ImageBackground } from 'react-native';

import { TextInput,Button,IconButton,Colors,Avatar } from 'react-native-paper';

class SignInScreen extends React.Component {

    state = {
       UsernameOrEmail  : '',
       Password : '',
     }
    render() {
      return (
             <ImageBackground  source={require('../assets/icons/background3.jpg')} style {styles.backgroundImage}>
              <Text>React Native App</Text>
            </ImageBackground>
          );
    }
  }


    export default SignInScreen;

    const styles = StyleSheet.create({
     backgroundImage: {
      flex: 1,
      resizeMode: 'cover', // or 'stretch'
     }
   });
于 2019-07-18T10:41:30.330 回答
0

另一个简单的解决方案:

<Image source={require('../assets/background.png')}
      style={{position: 'absolute', zIndex: -1}}/>

<View style={{flex: 1, position: 'absolute'}}>

  {/*rest of your content*/}
</View>
于 2017-09-23T02:11:35.200 回答
-1

ImageBackground 可能有限制

实际上,您可以直接使用它并且不推荐使用它。

如果您想在 React Native 中添加背景图像,并且还想在该背景图像上添加其他元素,请按照以下步骤操作:

  1. 创建容器视图
  2. 创建一个宽度和高度为 100% 的 Image 元素。还有 resizeMode: 'Cover'
  3. 在 Image 元素下创建另一个 View 元素,位置为:'absolute'

这是我使用的代码:

import React, { Component } from 'react';
import {Text, View, Image} from 'react-native';
import Screen from '../library/ScreenSize'

export default class MenuScreen extends Component {
    static navigationOptions = {
      header: null
    }
    render() {
        return (
          <View style={{ flex: 1 }}>
            <Image
              style={{
                resizeMode: "cover",
                width: "100%",
                height: "100%",
                justifyContent: "center",
                alignItems: "center",
                opacity: 0.4
              }}
              source={require("../assets/images/menuBackgroundImage.jpg")}
            ></Image>

            <View style={{
                width: Screen.width,
                height: Screen.height * 0.55,
                position: 'absolute',
                bottom: 0}}>
                <Text style={{
                    fontSize: 48
                }}>Glad to Meet You!</Text>
            </View>
          </View>
        );
    }
}

享受编码......

输出:

这是我的代码的输出。

于 2019-09-04T08:42:43.853 回答