2011-10-16 70 views

回答

1

这是非常基本的东西,如果你通过教程浏览会被覆盖。

还有更多,但一般常见的程序将包括任何图像,你想在你的res/drawable文件夹中使用该项目。然后,你通常会用XML来引用图像:

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/myimage" /> 
+0

是的,我发现,必须将图像保存在手机中?我在“myimage”放什么? – user842624

+0

你必须在res/drawable文件夹 –

+0

aha中包含项目内的图像......我找到了它.Thx为你的帮助和你的时间!!! – user842624