我正在尝试在Android
中制作一个线形。它适用于除API
21之外的所有Android
版本。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">
<size
android:height="3px"
android:width="10px" />
<stroke android:color="@color/brightPurple" />
设置非零笔划宽度。
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<size
android:height="3px"
android:width="10px" />
<stroke
android:color="@color/brightPurple"
android:width="1dp" />
</shape>