微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java-Android获取ImageButton的背景资源

我需要获取某些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.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐