尝试使用以下代码。
horizontal_dashed_line.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:width="1dp"
android:color="#ff0000"
android:dashWidth="4dp"
android:dashGap="4dp"/>
</shape>
Run Code Online (Sandbox Code Playgroud)
Vertical_dashed_line.xml
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="90"
android:toDegrees="90"
android:drawable="@drawable/horizontal_dashed_line"/>
Run Code Online (Sandbox Code Playgroud)
用法:
<View
android:layout_width="4dp"
android:layout_height="300dp"
android:background="@drawable/horizontal_dashed_line"/>
Run Code Online (Sandbox Code Playgroud)
查看下面的文章了解更多详情。
归档时间: |
|
查看次数: |
3392 次 |
最近记录: |