我的 Imageview 在设计中显示我的图像,但在我用作 avd 模拟器替代品的手机中不显示

My Imageview is showing my image in design but not in my mobile which I am using as avd emulator replacement

我正在制作一个 android 其 XML 代码是这样的

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    tools:context=".MainActivity">

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="146dp"
        android:layout_height="0dp"
        android:layout_marginTop="66dp"
        android:layout_marginBottom="87dp"
        app:layout_constraintBottom_toTopOf="@+id/textView3"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:srcCompat="@drawable/download" />

    <TextView
        android:id="@+id/textView3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="411dp"
        android:text="Welcome to javascript quiz"
        android:textSize="24sp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/imageView2" />

    <TextView
        android:id="@+id/textView4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="32dp"
        android:layout_marginEnd="29dp"
        android:text="Is Javascript was introduce in 1983?"
        android:textSize="20sp"
        android:textStyle="bold"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/textView3" />
</androidx.constraintlayout.widget.ConstraintLayout>

而Java代码是这样的

package com.example.chapter4practise;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

我可以在设计模式下看到我的图像,但是当我在使用 AVD 替换的移动设备上启动它时,我的图像没有显示。我的图像小于 5KB,它在 drawable 文件夹中。在ImageView的XML中,我尝试了三种类型的src,分别是tools:srcCompat="@drawable/download"tools:srcCompat="@drawable/download"android:src="@drawable/download".

tools:srcCompat="@drawable/download"

以上标签用于在布局编辑器中以预览模式显示图像。

android:src="@drawable/download"

上面的标签用于设置一个可绘制对象,因为这个 ImageView.It 的内容将以其原始大小显示。没有自动缩放。