React Native - 图像


在本章中,我们将了解如何在 React Native 中使用图像。

添加图像

让我们在src文件夹中创建一个新文件夹img。我们将在这个文件夹中添加我们的图像(myImage.png)。

我们将在主屏幕上显示图像。

应用程序.js

import React from 'react';
import ImagesExample from './ImagesExample.js'

const App = () => {
   return (
      <ImagesExample />
   )
}
export default App

可以使用以下语法访问本地图像。

image_example.js

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

const ImagesExample = () => (
   <Image source = {require('C:/Users/Tutorialspoint/Desktop/NativeReactSample/logo.png')} />
)
export default ImagesExample

输出

反应本机图像

屏幕密度

React Native 提供了一种使用@2x、@3x后缀针对不同设备优化图像的方法。该应用程序将仅加载特定屏幕密度所需的图像。

以下是img文件夹中图像的名称。

my-image@2x.jpg
my-image@3x.jpg

网络图片

当使用网络图像时,我们需要source属性,而不是require。建议定义网络图像的宽度高度

应用程序.js

import React from 'react';
import ImagesExample from './image_example.js'

const App = () => {
   return (
      <ImagesExample />
   )
}
export default App

image_example.js

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

const ImagesExample = () => (
   <Image source = {{uri:'https://pbs.twimg.com/profile_images/486929358120964097/gNLINY67_400x400.png'}}
   style = {{ width: 200, height: 200 }}
   />
)
export default ImagesExample

输出

网络图片