Android - 以编程方式删除图像按钮的灰色边框

时间:2013-08-04 15:15:55

标签: android imagebutton

我有一个生成imageButtons的应用程序并将它们放在TableRow中。

但是,imageButton的两侧有一个灰色边框,不在drawable文件夹中的图像上。

如何以编程方式删除这些边框?到目前为止,我见过的解决方案在布局中使用了xml属性,但我无法使用该解决方案,因为我以编程方式生成了我的imageButtons。

有什么想法吗?

2 个答案:

答案 0 :(得分:2)

找到答案。

imageButton.setBackground(空);

答案 1 :(得分:0)

您可以使用

ImageButton btn = (ImageButton)findViewById(R.id.imagebutton);
btn.setBackground(null);
祝你好运