Open NaveenCrownStack opened 5 years ago
map[getSchemeCalendar(year, month, 27, -0xec5310, "95").toString()] = getSchemeCalendar(year, month, 27, -0xec5310, "95") mCalendarView.setSchemeDate(map)
this method not set color as scheme ....
look at your MonthView or WeekView onDrawScheme, mSchemePaint.setColor from scheme.getColor()
where we get the scheme.getcolor()
mProgressPaint.setAntiAlias(false);
mProgressPaint.setStyle(Paint.Style.STROKE);
mProgressPaint.setStrokeWidth(dipToPx(context, 3.2f));
this is progress bar code i want to set the colorscheme on this progress...
RectF progressRectF = new RectF(cx - mRadius, cy - mRadius, cx + mRadius, cy + mRadius); canvas.drawArc(progressRectF, -90, angle, false, mProgressPaint); <<<<---- here this mProgresspaint parementer passed but when i passed mSchemePaint instead of mProgressPaint then colorSchema worked but not in progress bar way .. i will show on attachemen
Hee Thank you so much now it's working i set mProgresspaint object to the schema like mSchemePaint.set(mProgressPaint); then its working ... thankqqq
Hee I need to one more favor of your can i change the color on mNoneProgressPaint according to the schema as mProgressPaint i that possible
I want to change the color of all date of progress bar .. as I have seen only one color have the option to change I want a different color on a different day. Is that possible please help