我想在左侧的按钮上添加一个可绘制图像并尝试了以下操作:
button = new Button(this);
button.setWidth(screen_dimens(0.25, "w")); //25% of screen width
button.setPadding(5, 5, 0, 5);
Drawable img = getResources().getDrawable(R.drawable.image);
button.setCompoundDrawablesWithIntrinsicBounds(img, null, null, null);
但我想在可绘制对象和按钮边框之间的左侧有一个填充。不幸的是,没有。
有什么帮助吗?