启动画面图像开箱即用

发布于 2025-01-09 02:53:09 字数 240 浏览 0 评论 0原文

我有一个 React Native cli 项目,我已经为启动屏幕设置了图像。但是当渲染图像时,它会开箱即用,并且图像不会完全显示在屏幕上。有没有办法设置适合屏幕的图像尺寸?

这是启动画面: 输入图片此处描述

I have a react native cli project which I have set an image for my splash screen.But when the image is rendered it goes out of the box and the image is not shown completely on the screen. Is there a way to set the image size fitted on the screen?

Here is the splash screen:
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

站稳脚跟 2025-01-16 02:53:09

您是如何将图像设置为启动屏幕的?你使用了react-native-splash-screen包吗?如果是这样,您可以在布局文件中设置它;

<ImageView 
android:id="@+id/logo"
android:src="@drawable/logoname"
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:scaleType="centerCrop" 
android:layout_centerInParent="true"
/>

How did you set the image to the splash screen? Did you use the react-native-splash-screen package? If so, you could set this in your layout file;

<ImageView 
android:id="@+id/logo"
android:src="@drawable/logoname"
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:scaleType="centerCrop" 
android:layout_centerInParent="true"
/>
樱娆 2025-01-16 02:53:09

您还没有提供代码。

像希望的那样改变scaleType

android:scaleType="center"

,它会起作用:)

你可以从这里获得帮助
https://developer.android.com/reference/android/widget/ImageView。比例类型

you have not provided the code.

change the scaleType like as

android:scaleType="center"

hopefully, it will work :)

you can get help from here
https://developer.android.com/reference/android/widget/ImageView.ScaleType

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文