<@U0MG3FCGN> Your first example worked, for the mo...
# anko
t
@jovmit Your first example worked, for the most part. I'm still seeing an issue though. In my xml style, I set the background to a custom color
<item name="android:background">@color/lightBlue</item>
, but this color doesn't get applied. I've seen this issue elsewhere with anko too. The
textColor
attribute doesn't apply a custom color, unless I set it to
ContextCompat.getColor(ctx, R.color.lightBlue)
. Do you have any insight on this behavior? I'm not sure how to use the ContextCompat call in xml, if that is the issue.