编程语言
首页 > 编程语言> > java-Android获取ImageButton的背景资源

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.

标签:image,background,imagebutton,java,android
来源: https://codeday.me/bug/20191031/1972103.html