我无法加载图片。我尝试了以下
如何在创建的应用程序中使用图片
答案 0 :(得分:0)
如果你想使用drawables中的图像,你可以通过ImageView控件从你的布局中引用它:
<ImageView
android:id="@+id/this-is-your-image-view-id"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1.00"
android:src="@drawable/this-is-your-drawable-name" />
答案 1 :(得分:0)
我遇到了同样的问题,使用.png图片修复,而不是其他格式。