设置Android Drawable项目的宽度?

时间:2012-04-14 19:53:57

标签: android xml-drawable

我想要的是左边的红色部分背景。像这样的东西。 enter image description here

我尝试了很多东西(是否有任何WYSIWIG编辑器?我认为我运行了数百次。)如下文所述指定宽度不起作用。 how to specify width and height of a drawable item

以下文章只告诉我,我不能使用百分比,现在如何应用宽度。 Android Drawable: Specifying shape width in percent in the XML file?

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

            <shape>
                <solid 
                android:color="#FFFFFFFF"/>
            </shape>

    </item>
    <item>

            <shape android:shape="rectangle">
                <solid android:color="#55FF0000" />
                <size android:width="100px" />
            </shape>

    </item>

</layer-list>

2 个答案:

答案 0 :(得分:2)

指定使用可绘制资源的ImageView或其他窗口小部件的宽度。 <shape>背后的要点是指定大小,因此可以在运行时应用于各种大小。

答案 1 :(得分:0)

您无需定义红色框的大小,而是定义一个红色层,然后将白色层的左边界设置为等于要显示的红色量。

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape>
            <solid android:color="#55FF0000" />
        </shape>
    </item>
    <item android:left="100px">
        <shape android:shape="rectangle">
            <solid android:color="#FFFFFFFF"/>
        </shape>
    </item>
</layer-list>

如果知道所需的负空间,您甚至可以将两者互换,并将红色(现在位于顶层)的右边距设置为应显示的白色量。