尝试使用ImageView显示图像时程序崩溃

时间:2011-05-31 22:29:35

标签: android

大家好 我是android的新手,我很难做一些非常简单的事情 - 我想将一个图像添加到我的xml文件中。下面是configure_screen.xml中的xml代码(我注释掉了一些不相关的东西):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent" 
android:layout_height="fill_parent">

<ImageView android:id="@+id/rings"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:src="@drawable/imageName"></ImageView> </LinearLayout>

然后,在我的活动文件中,我的onCreate()方法只包含该行     的setContentView(R.layout.configure_screen);

我将图像添加到drawable-mdpi文件夹中。当我尝试在模拟器上运行它时,它说“应用程序已意外停止”。当我用“@ drawable / icon”替换“@ drawable / imageName”时,会发生同样的事情。

我确信我缺少一些简单的东西,有谁知道如何解决?如果有人有兴趣,我可以添加LogCat信息。

1 个答案:

答案 0 :(得分:0)

您应该通过创建在src中为图像视图指定drawable(而不是drawable-mdpi)来将图像添加到新文件夹“drawable”。 试试吧......我做到了,效果很好