Android Studio:在 phone 上调试应用程序时图像不显示,但在模拟器上显示
Android Studio: Images do not show up while debugging app on phone, but do on the emulator
我在空白处插入了一张图片activity:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView4"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:src="@drawable/h2ua" />
在 Design 中查看以及在我的 Mac 上使用 Nexus 5 模拟器测试应用程序时,图像工作正常。但是当我将它转移到我的 phone 时,它没有出现。我在另一个 activity 中有完全相同的设置,它在我的 phone 上工作得很好。我尝试在空白 activity 中的图像顶部插入文本,这也显示在我的 phone 中。有什么想法是错误的吗?
是的...我想通了。图片太大了,max是2048x2048,我的是2200
我在空白处插入了一张图片activity:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView4"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:src="@drawable/h2ua" />
在 Design 中查看以及在我的 Mac 上使用 Nexus 5 模拟器测试应用程序时,图像工作正常。但是当我将它转移到我的 phone 时,它没有出现。我在另一个 activity 中有完全相同的设置,它在我的 phone 上工作得很好。我尝试在空白 activity 中的图像顶部插入文本,这也显示在我的 phone 中。有什么想法是错误的吗?
是的...我想通了。图片太大了,max是2048x2048,我的是2200