我有一个简单的列表视图,我已经为分隔符定义了一个自定义的drawable.我已经将分隔线高度定义为1dp.列表视图在片段中.
<shape android:shape="line" > <stroke android:color="@color/custom_color" /> <gradient android:height="1dp" /> </shape>
它适用于除L.之外的所有Android版本.
我失踪了吗?
解决方法
您应该使用android:shape =“rectangle”而不是android:shape =“line”,使其在每个Android版本上都可以工作(也可以将笔画更改为实体)
<shape android:shape="rectangle" > <solid android:color="@color/custom_color" /> <gradient android:height="1dp" /> </shape>
玩的开心!