我在Android项目中使用的图像(.jpg)显示在" Design"但是当我启动一个模拟器时,它就不存在了。其他图像也未加载。
我找到了一些可能的解决方案Image showing in Android Studio but not on phone,但在我的案例中没有一个解决方案有效。总结一下,我试过了:
没有成功。我在OS X上工作
代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@drawable/testimage"
android:id="@+id/imageView"
/>
<TextView
android:text="test"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView2"
android:textAlignment="center" />
</LinearLayout>
</RelativeLayout>