Android Studio图像显示在设计屏幕中,但不在模拟器中

时间:2017-01-06 14:41:04

标签: android android-studio

我在Android项目中使用的图像(.jpg)显示在" Design"但是当我启动一个模拟器时,它就不存在了。其他图像也未加载。

我找到了一些可能的解决方案Image showing in Android Studio but not on phone,但在我的案例中没有一个解决方案有效。总结一下,我试过了:

  • 将图像移动到drawable-xxhdpi或mipmap - xxhdpi
  • 使用其他图片以及其他格式(.png)
  • 添加android:adjustViewBounds =" true"
  • 清理/重建项目等

没有成功。我在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>

0 个答案:

没有答案