java-Android获取ImageButton的背景资源

java-Android获取ImageButton的背景资源,第1张

概述我需要获取某些ImageButton的背景资源,以便以后再使用,对于设置背景,我使用setBackgroundResource.我找不到任何方法来获取backgroundressource.privatevoidAddImage(intimg){ImageButtonimgact1=(ImageButton)findViewById(R.id.imgact1);ImageButtonimgact2=

我需要获取某些Imagebutton的背景资源,以便以后再使用,对于设置背景,我使用setBackgroundResource.我找不到任何方法来获取backgroundressource.

private voID AddImage(int img){    Imagebutton imgact1 = (Imagebutton)findVIEwByID(R.ID.imgact1);    Imagebutton imgact2 = (Imagebutton)findVIEwByID(R.ID.imgact2);    Imagebutton imgact3 = (Imagebutton)findVIEwByID(R.ID.imgact3);    imgact3.setBackgroundResource(img);}

谢谢你的帮助 .

解决方法:

对于任何VIEw,都应使用getBackground(),它返回Drawable.

总结

以上是内存溢出为你收集整理的java-Android获取ImageButton的背景资源全部内容,希望文章能够帮你解决java-Android获取ImageButton的背景资源所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

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

原文地址: http://outofmemory.cn/web/1086836.html

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

发表评论

登录后才能评论

评论列表(0条)

保存