我正在尝试更改textview
Android MonoDevelop 中 a 的颜色。
我试过这个:
TextView mapTextView = new TextView(contextOverlay);
mapTextView.Text = overlayDetailsForThisOverlay.stringName;
mapTextView.setTextColor(Color.RED);
我收到以下错误:
Android.Widget.TextView
不包含 的定义setTextColor
。
我尝试将以下内容添加为 using 语句:
using `Android.Graphics`;
没有运气。
我可以帮忙吗?