4

我正在尝试以编程方式更改操作栏底部的分隔栏的颜色。我的策略是基于以下 XML将操作栏背景设置为以编程方式生成LayerDrawable的包含矩形:ShapeDrawable

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- Bottom Line -->
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/action_bar_line_color" />
        </shape>
    </item>

    <!-- Color of your action bar -->
    <item android:bottom="2dip">
        <shape android:shape="rectangle">
            <solid android:color="@color/action_bar_color" />
        </shape>
    </item>
</layer-list>

但是我遇到了一个障碍:我不知道如何以编程方式应用android:bottom属性(如)。<item android:bottom="2dip">显然android:bottom是项目标签的一个属性,(我认为)没有程序上的等价物,而且我无法找到任何ShapeDrawable看起来合适的方法/属性。

到目前为止的代码:

public LayerDrawable createABBackground(String color) {
    ShapeDrawable rect = new ShapeDrawable(new RectShape());
    rect.getPaint().setColor(Color.parseColor("#000000"));
    ShapeDrawable rect2 = new ShapeDrawable(new RectShape());
    rect2.getPaint().setColor(Color.parseColor(color));
    ShapeDrawable[] layers = {rect, rect2};
    LayerDrawable background = new LayerDrawable(layers);
    return background;
}

想法?如果它对替代解决方案很重要,我正在使用 ActionBarSherlock。

编辑:

setLayerInset,按照 MH 的建议,做了我想要的。这是使用它的函数的修改版本:

public LayerDrawable createABBackground(String color) {
    ShapeDrawable rect = new ShapeDrawable(new RectShape());
    rect.getPaint().setColor(Color.parseColor(color));
    ShapeDrawable rect2 = new ShapeDrawable(new RectShape());
    rect2.getPaint().setColor(Color.parseColor("#000000"));
    ShapeDrawable[] layers = {rect, rect2};
    LayerDrawable background = new LayerDrawable(layers);
    background.setLayerInset(0, 0, 3, 0, 0);
    background.setLayerInset(1, 0, 0, 0, 3);
    return background;
}
4

4 回答 4

3

根据之前的评论:

setLayerInset(int index, int l, int t, int r, int b)试一试了吗?文档说:

为 drawable[index] 的边界指定修饰符。左 += l 上 += t; 对 -= r; 底部-= b;

于 2013-07-05T22:44:05.673 回答
1

从 LayerDrawable 的源代码来看,允许您这样做的方法是私有的。但是您可能可以使用带有InsetDrawable的 LayerDrawable 来完成此操作

于 2013-07-04T14:30:38.137 回答
0

如果您可以详细说明您以编程方式更改颜色的原因是什么?如果您不控制背景颜色,这样做似乎有点毫无意义。如果您正在控制背景颜色,那么您可能正在使用样式,在这种情况下,我可以想到几种方法来做到这一点。

西蒙

于 2013-06-28T20:06:02.837 回答
0

这对我有用:

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

    <item android:id="@+id/actionBarLineParent">
        <shape
            android:id="@+id/actionBarLine"
            android:shape="rectangle" >
            <solid android:color="@color/red_all_files" />
        </shape>
    </item>

    <item
        android:id="@+id/actionBarColourParent"
        android:bottom="2dip">
        <shape
            android:id="@+id/actionBarColour"
            android:shape="rectangle" >
            <solid android:color="@android:color/white" />
        </shape>
    </item>

</layer-list>

然后调用:

final LayerDrawable ld = (LayerDrawable) getResources().getDrawable(R.drawable.actionbar_background);
ld.setDrawableByLayerId(R.id.actionBarLineParent, new ColorDrawable(Color.BLUE));
getActionBar().setBackgroundDrawable(ld);

您需要确保设置了 android:id

于 2014-09-13T11:35:05.603 回答