本文主要是介绍使用shape画虚线,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在Android中使用shape画虚线,一定要加上
android:layerType="software"这句话,不然显示的就是直线
画虚线的 beijing_xuxian_black.xml文件
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="line"><strokeandroid:width="1.5dp"android:color="@color/black_bantouming_25"android:dashGap="4dp"android:dashWidth="5dp" />
</shape>
布局文件中使用
<Viewandroid:layout_width="match_parent"android:layout_height="20dp"android:layout_marginLeft="11dp"android:layout_marginRight="11dp"android:background="@drawable/beijing_xuxian_black"android:layerType="software" />
一定要注意加上android:layerType="software"
这篇关于使用shape画虚线的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!