0
我使用這個實施ItemDecoration: https://gist.github.com/zokipirlo/82336d89249e05bba5aaRecyclerView ItemDecoration爲vertrical名單
這是我的資源:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="line">
<stroke
android:color="@color/music_player_divider"
android:width="1dp"/>
<size android:height="1dp"/>
</shape>
</item>
而且我沒有看到任何分隔。如果設置爲<size android:height="2dp"/>
,我確實得到一條線。問題是,這條線有一個底部和頂部填充。我想要的是2px寬度線,沒有填充。
你是什麼意思「追尾」? – SnapDragon
正如您在代碼示例末尾沒有一樣。它也從你的項目中丟失了嗎? – vguzzi
我擁有它。這是一個複製粘貼錯誤。 – SnapDragon