如何在Android界面中包含图像?

时间:2011-06-04 14:19:15

标签: android image

我正在创建我的第一个Android界面,我想在其上添加徽标。该徽标名为logo.jpg。我该怎么做?

3 个答案:

答案 0 :(得分:5)

将logo.jpg放入res / drawable目录。或者,如果您有不同大小的徽标,请将它们放在res / drawable-mdpi,res / drawable-hdpi等中。有关详细信息,请参阅Providing Resources

要显示图像,请使用ImageView。 XML指的是这样的图像:

android:src="@drawable/logo"

答案 1 :(得分:2)

您可以将徽标(例如name logo.png)添加到文件夹drawable,然后在布局xml上添加imageView,如下所示:

<ImageView 
            android:id="@+id/logo" 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:src="@drawable/logo" <!-- this is the drawable source of your imageView -->
    /> 

答案 2 :(得分:0)

然后将图像视图放在您想要徽标的位置,并将图像资源设置为R.drawable.logo或资源名称。