线条形状未显示在 Android API 21 中



我正在尝试在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>

相关内容

  • 没有找到相关文章

最新更新