我想通过编程方式在中心位置按钮上设置图标,如上图所示,请任何人帮助我......
答案 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"