Android ImageView 没有显示图像?

2022-09-01 04:49:46

谁能告诉我为什么下面的代码不起作用?图像根本不显示。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"

   <ImageView
          android:src="@drawable/splashscreen"
          android:scaleType="center"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content" />

</RelativeLayout>

答案 1

在我的情况下,当我运行应用程序时,我的所有片段的 imageViews 都没有显示。问题是,我从“FragmentActivity”扩展了我的“Activity”类。所以我只是把它“FragmentActivity”改成“AppCompatActivity”。"

也许这会帮助某人。


答案 2

在 ImageView 中,有两个选项 srcsrcCompact。尝试它们两个,找出哪个有效。

android:src="@drawable/slide_view_4"

app:srcCompat="@drawable/slide_view_4"

推荐