Android Canvas Drawrect Colour Always Shows As Grey?
I'm creating a custom view on Android, but the rendered colour is always grey no matter how I try to change it. private void init() { Resources res = mContext.getResources(
I seem to have got my required result by changing
mRectPaintPrimary.setColor(mPrimaryColor);
to
mRectPaintPrimary.setColor(getResources().getColor(mPrimaryColor));
Or even better
mRectPaintPrimary.setColor(ContextCompat.getColor(mContext,mPrimaryColor));
Post a Comment for "Android Canvas Drawrect Colour Always Shows As Grey?"