Android--shape虚线

虚线的写法:

android:shape="line">

android:width="2px"

android:color="@color/mp.text.title"

android:dashWidth="10px"

android:dashGap="10px"/>

用法及注意事项:

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_marginBottom="@dimen/mp.margin.normal"

android:layout_marginTop="@dimen/mp.margin.normal"

android:background="@drawable/shape_dot_line"

android:layerType="software"/>

注意一定要设置layerType,否则是一条直线

你可能感兴趣的:(Android--shape虚线)