使用启动画面反应本机无法显示图像

时间:2019-08-30 12:35:23

标签: react-native react-native-android

我想将图像放在初始屏幕中进行本机反应,但是没有用。我正在使用此库https://github.com/crazycodeboy/react-native-splash-screen

我在其中放了一些文字,效果很好。但图像根本没有出现。我在android studio中试过了,效果很好,但是当反应原生渲染图像时根本没出现

图片:png 32位

这是代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout

    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_vertical|center_horizontal"
    android:orientation="vertical"
    android:background="@color/white"
>

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_gravity="center_horizontal"
        app:srcCompat="@drawable/splash" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="7dp"
        android:text="Tes"
        android:textColor="#4972D1"
        android:textSize="24sp" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="7dp"
        android:text="Tes"
        android:textColor="#759fff"
        android:textSize="24sp" />

</LinearLayout>

这是android studio中的内容 Here is it in android studio

当我启动该应用程序时 enter image description here

2 个答案:

答案 0 :(得分:0)

您还需要在Splash.xml中添加图像,然后重新构建项目。

还将图像添加到可绘制文件夹中。

答案 1 :(得分:0)

根据官方文档,您应该将scaleType属性添加到ImageView。

  android:scaleType="centerCrop"

如果它不起作用,请添加清单文件以获取更多帮助。