我需要创建一个 android 形状,以便只有底部有描边(虚线)。当我尝试以下操作时,笔划将形状从中心一分为二。有谁知道如何正确处理?笔划必须是底线/边框。我使用形状作为 TextView 的背景。请不要介意我为什么需要它。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle" >
<solid android:color="#1bd4f6" />
</shape>
</item>
<item>
<shape android:shape="line" >
<padding android:bottom="1dp" />
<stroke
android:dashGap="10px"
android:dashWidth="10px"
android:width="1dp"
android:color="#ababb2" />
</shape>
</item>
</layer-list>