0

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

但是,imageButton 在可绘制文件夹中不在图像上的侧面有一个灰色边框。

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

有任何想法吗?

4

2 回答 2

2

找到了答案。

imageButton.setBackground(null);

于 2013-08-04T15:26:34.537 回答
0

您可以使用

ImageButton btn = (ImageButton)findViewById(R.id.imagebutton);
btn.setBackground(null);

祝你好运

于 2013-08-04T15:37:23.613 回答