带外部图像的ImageButton?

时间:2011-10-16 18:32:26

标签: android user-interface imagebutton

我正在寻找将自己的图像作为ImageButton的方法。有src的东西,但它只接受图标我的东西。有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

这是非常基本的东西,如果你通过教程,将会涵盖。

还有更多内容,但一般常见的程序是在项目的res / drawable文件夹中包含您想要使用的任何图像。然后,您通常会以XML格式引用图像:

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