1
Android中的drawable-xdpi drawabale-xxdpi和iOS中的@ 2x @ 3x之類的東西?根據dpi反應原生支持加載圖像
這裏是樣品
<Image
source={require('./img/3.jpg')}
resizeMode='cover'/>
Android中的drawable-xdpi drawabale-xxdpi和iOS中的@ 2x @ 3x之類的東西?根據dpi反應原生支持加載圖像
這裏是樣品
<Image
source={require('./img/3.jpg')}
resizeMode='cover'/>
您可以在文件夾中添加圖像的大小不同。它與ios實現類似。
└── img
├── [email protected]
└── [email protected]
用法
<Image source={require('./img/check.png')} />
打包將捆綁並且用於對應於所述設備的屏幕密度的圖像,例如
您最好閱讀本頁以便更好地理解。 https://facebook.github.io/react-native/docs/images.html
它的工作原理,非常感謝。通過閱讀頁面,還有另一種方法可以通過在Android中的可繪製文件夾中使用uri指向xxx以及在iOS中使用xxx資源中的xxx。例如, 其中voice-run.png位於drawable-xdpi,drawable-xxdpi和[email protected] [email protected]位於iOS的images.xcassets中 –
gonglong