2

我试图更好地理解图层可绘制对象在按钮可绘制对象中的工作方式。

我正在尝试绘制 2 个简单的彩色框,一个没有插图,以便填充整个按钮可绘制区域。一个有一些插图。

ColorDrawable background1 = new ColorDrawable(Color.BLUE);
ColorDrawable background2 = new ColorDrawable(Color.GREEN);
Drawable[] drawables = new Drawable[] {
  background1,
  background2
};

LayerDrawable ld = new LayerDrawable(drawables);
ld.setLayerInset(0, 0, 0, 0, 0 ); // no inset on white box
ld.setLayerInset(1, 8, 8, 8, 8 ); // 8 inset on all side on green box

// set the left drawable on the button
button.setCompoundDrawablesWithIntrinsicBounds(ld, null, null, null);

然而,这根本不起作用。第一个问题是盒子没有填满任何区域。那是因为按钮可绘制对象没有预定义的大小吗?如果是这种情况,我尝试在盒子上手动设置边界,但也没有太多运气。

谁能帮我理解我做错了什么?

4

2 回答 2

0

在 Drawable 中创建特定设计并在 xml 中调用背景按钮

于 2018-04-15T14:15:41.683 回答
0

现在的问题ColorDrawablegetIntrinsicWidth()/getIntrinsicHeight()确定drawable的边界默认为-1,因此它不会在屏幕上呈现。在您的情况下,有助于扩展ColorDrawable和覆盖构造函数的高度和宽度。

这是一个示例:

  class CustomDrawable(color: Int, val h: Int, val w: Int): ColorDrawable(color) {
    override fun getIntrinsicHeight(): Int {
      return h
    }

    override fun getIntrinsicWidth(): Int {
      return w
    }
  }

然后你可以实例化它而不是ColorDrawable像这样

val background1 = CustomDrawable(Color.BLUE, dimensionInPx , dimensionInPx)
val background2 = CustomDrawable(Color.GREEN, dimensionInPx, dimensionInPx)

请务必在传递这些值之前将 dp 转换为 px

希望这可以帮助。

于 2018-04-15T15:09:02.527 回答