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.

上一篇:Android:以编程方式在ImageButton中设置图像的填充


下一篇:Android:使用选择器更改按钮背景图像和颜色