我正在尝试使用SetStroke
的{{1}}方法将黑色边框设置为textView
GradientDrawable
我不能像在java中那样使用它,我收到错误
GradientDrawable shape = new GradientDrawable();
shape.SetStroke(1, 0xFF000000);
答案 0 :(得分:2)
在Xamarin中,SetStroke(int width,int color)不存在。
您可以使用SetStroke(int width,Color color)。
这样的事情:
GradientDrawable shape = new GradientDrawable();
shape.SetStroke(1, Resources.GetColor(Resource.Color.black);