0
我有這個繪製一個矩形。Android形狀自定義矩形
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#00000000" />
<stroke android:width="1dp" android:color="#ffffff" android:dashWidth="0dp" android:dashGap="0dp" />
</shape>
但我只想在頂部和底部兩條水平線。我們如何實現這一目標?