Ute
Results
1
comments of
Ute
@ColorInt fun Context.getColorThemeRes(@AttrRes id: Int): Int { val resolvedAttr = TypedValue() this.theme.resolveAttribute(id, resolvedAttr, true) return this.getColor(resolvedAttr.resourceId) } val textColorPrimary = requireContext().getColorThemeRes(android.R.attr.textColorPrimary) val yAxis = chart.getAxisLeft() yAxis.textColor = textColorPrimary similar all...