我正在尝试更改RecyclerView的ItemDecoration类中可绘制对象的颜色。这是我的分隔线:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<size
android:width="15dp"/>
</shape>
mDivider = mContext.getResources().getDrawable(R.drawable.recycler_view_divider);
我已经尝试过了,但似乎没有用:
mDivider.setColorFilter(Color.BLUE, PorterDuff.Mode.SRC_IN);