通过编程方式在按钮中心位置上设置图标

时间:2013-07-11 06:45:25

标签: android button icons

enter image description here

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

1 个答案:

答案 0 :(得分:3)

五月这可以帮助你..

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

btn.setBackgroundResource(R.drawable.image);

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

或使用: setCompoundDrawableWithIntrinsicBounds().

在其文档CLICK HERE

中查看有关setCompoundDrawableWithIntrinsicBounds()的更多信息

修改

尝试这种方式: setCompoundDrawableWithIntrinsicBounds(R.drawables.minus,0,0,0);

以XML格式添加此行:android:paddingLeft="100dp"