Android L无法将虚线绘制为可绘制背景

时间:2014-07-02 16:40:25

标签: xml shape android-5.0-lollipop dotted-line

Android L无法将虚线绘制为可绘制背景,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item> 
<shape  android:shape="line" >

    <stroke
        android:dashGap="1dp"
        android:dashWidth="1dp"
        android:color="#999999" />

    <size android:height="1dp" />

    </shape>
</item>
</selector>

我也在使用layerType =&#39;软件&#39;在xml中。 请帮助。

1 个答案:

答案 0 :(得分:12)

1.视图的高度必须至少为2dp(或wrap_content)才能显示,因为笔划设计为围绕视图进行,并且没有空间可以显示1DP。

2.为xml添加宽度:

<stroke
    android:width="1dp"
    android:dashGap="1dp"
    android:dashWidth="1dp"
    android:color="#999999" />

<size android:height="1dp" 
    android:width="1dp"/>

3.使用layerType='software'