android中怎么添加imagebutton图标

android中怎么添加imagebutton图标,第1张

在layout目录下的main.xml里加一个ImageButton,具体代码如下:

<ImageButton

android:id="@+id/imageButton1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:src="@drawable/ic_launcher"

/>

//android:src="这里是给ImageButton加一个图片做这个imagebutton的图标"

在Activity里面监听这个ImageButton时间具体代码如下:

ImageButton

imageButton

=

(ImageButton)

findViewById(R.id.imageButton1)

imageButton.setOnClickListener(this)

AndroidManifest.xml中<application android:icon="@drawable/icon" android:label="@string/app_name">

。。。

</application>

android:icon="@drawable/icon" 就是程序的图标,把drawable下的icon删掉,换成你自己设计好的图片就ok了


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11521296.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存