ListView仕切りに2つのストロークを(次々に)描画することは可能ですか?
次のドローアブルを試しましたが、最初のストロークしか表示されません。
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:color="#eeeeee"
/>
<size
android:height="1px"
/>
<stroke
android:color="#c1c1c1"
/>
<size
android:height="1px"
/>
</shape>