设置Android Drawable项目的宽度?

我想要的是左边的红色部分背景.像这样的东西.

我尝试了很多东西(是否有任何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>

最佳答案 您可以指定使用可绘制资源的ImageView或其他窗口小部件的宽度. < shape>背后的重点是为了不指定大小,因此它可以在运行时应用于各种大小.

点赞