以编程方式更改图层列表 Drawable 项目的底部 属性

Change bottom property of item of layer-list Drawable programmatically

我正在创建一个 LayerDrawable 来创建底部描边,但我不知道如何给出图层的底部边距 (Drawablw)。

    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:bottom="2dp">
      ..
        </item>
    </layer-list>

我想像上面那样以编程方式设置底部边距。

到目前为止我已经这样做了:

Drawable[] list = new Drawable[2];
GradientDrawable strokeDrawable = new GradientDrawable(
    GradientDrawable.Orientation.TOP_BOTTOM, new int[] {
        strokeColor[0], strokeColor[0] });
GradientDrawable backgroundDrawable = new GradientDrawable(
    GradientDrawable.Orientation.TOP_BOTTOM, bgColor);
// Now how to set bottom margin to make border. 

list[0] = strokeDrawable;
list[1] = backgroundDrawable;

LayerDrawable layerDrawable = new LayerDrawable(list);

有人知道吗?

经过大量挖掘,我找到了解决方案,虽然它解决了我的问题,但它不是我想要的。

我创建了一个图层列表可绘制对象并动态更改了它的项目颜色。 这是代码:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

<item android:id="@+id/item_bottom_stroke" >
    <shape android:shape="rectangle">
        <solid android:color="#0096FF"/>
    </shape>
</item>
<item android:id="@+id/item_navbar_background" android:bottom="1dp" >
    <shape android:shape="rectangle">
        <solid android:color="#FFFFFF"/>
    </shape>
</item>

以下代码在运行时修改上面的可绘制对象以更改其颜色。

LayerDrawable layerDrawable = (LayerDrawable) v.getContext().getResources().getDrawable(R.drawable.layer_list_navigation_with_border);
GradientDrawable strokeDrawable = (GradientDrawable) layerDrawable.findDrawableByLayerId(R.id.item_bottom_stroke);
strokeDrawable.setColor(strokeColor[0]);
GradientDrawable backgroundColor = (GradientDrawable) layerDrawable.findDrawableByLayerId(R.id.item_navbar_background);
backgroundColor.setColors(bgColor);

已发布解决方案,认为有人可能会受益。

这是一个老问题,但我想我仍然post这里的答案以防它对某人有帮助。

以编程方式更改图层列表底部 属性 的方法是使用 layerDrawable.setLayerInset(index, left, top, right, bottom); 在这个问题示例中:

LayerDrawable layerDrawable = (LayerDrawable) v.getContext().getResources().getDrawable(R.drawable.layer_list_navigation_with_border);
layerDrawable.setLayerInset(1, 0, 0, 0, bottom);

其中 bottom 是所需 dp 的像素值。

希望这对某人有所帮助。