-1

在此处输入图像描述

我想通过编程方式在中心位置的按钮上设置图标,如上图,请任何人帮助我...

4

1 回答 1

3

愿这对你有帮助..

为 Drawable 文件夹中的按钮设置背景图像,然后使用以下代码:

btn.setBackgroundResource(R.drawable.image);

或者

btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.image));

或使用: setCompoundDrawableWithIntrinsicBounds().

setCompoundDrawableWithIntrinsicBounds()在其文档中查看更多相关信息:单击此处

编辑:

试试这个方法: setCompoundDrawableWithIntrinsicBounds(R.drawables.minus,0,0,0);

在 XML 中添加这一行:android:paddingLeft="100dp"

于 2013-07-11T06:48:54.283 回答