制作 android 个自定义可绘制对象

Making android custom drawable

如何创建与给定布局高度相匹配的可绘制对象?我知道我必须在一个可绘制对象中创建某种多种形状,但我有点迷失在其中。

试试 2 个椭圆形和一条线的图层列表。然后设置为视图的背景。我不确定它是否有效。

你也可以使用9补丁:read this

它应该与 xml 一起工作:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:paddingTop="4dp">
    <item>
        <rotate android:fromDegrees="90" android:gravity="center_horizontal" android:toDegrees="90">
            <shape android:shape="line">
                <stroke android:color="#000000" android:width="1dp"/>
            </shape>
        </rotate>
    </item>
    <item android:gravity="center_horizontal|top" android:height="8dp" android:width="8dp">
        <shape android:shape="oval">
            <solid android:color="#000000"/>
        </shape>
    </item>
    <item android:gravity="center_horizontal|bottom" android:height="4dp" android:width="4dp">
        <shape android:shape="oval">
            <solid android:color="#000000"/>
        </shape>
    </item>
</layer-list>