我懂了:
我想要的是:
不要在意现在的颜色。我想出了如何做水平线,但不是垂直线。那么如何添加垂直线呢?
这是我的 row_border.xml (形状):
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#ffffff" />
<stroke android:width="1dp" android:color="#99cc00" />
</shape>
已经试过了,但是没有用:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#ffffff" />
<stroke android:width="1dp" android:color="#99cc00" />
<stroke
android:angle="90"
android:width="1dp"
android:color="#ff0000"
></stroke>
</shape>