我想有一个类似于下图的drawable。
我想我需要4条线; 2为尖端,每侧为1。我不明白如何:
这是我到目前为止所做的:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="line">
<stroke
android:width="1dp"
android:color="#336699"/>
</shape>
</item>
<item>
<rotate
android:fromDegrees="135"
android:toDegrees="135">
<shape android:shape="line">
<stroke
android:width="1dp"
android:color="#330000"/>
</shape>
</rotate>
</item>
<item>
<rotate
android:fromDegrees="45"
android:toDegrees="45">
<shape android:shape="line">
<stroke
android:width="1dp"
android:color="#000033"/>
</shape>
</rotate>
</item>
<item>
<shape android:shape="line">
<stroke
android:width="1dp"
android:color="#336699"/>
</shape>
</item>
</layer-list>
有人能指出我正确的方向吗?