Android Drawable setColorFilter不会更改drawable的颜色

时间:2019-07-19 08:53:48

标签: android xml android-recyclerview android-drawable

我正在尝试更改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);

0 个答案:

没有答案