我正在尝试在我的一个Android应用程序中实现TextView
大纲,其中描述了here
我已经提到了自定义textView类,没有任何错误。我正在尝试在我的活动中使用它,但正如我正在学习的那样,我很难将其用Activity
作为setStroke
方法。
我正在尝试如下
text_quotes.setStroke(0,R.color.toolbar_color,0,0);
任何人都可以建议我这四个我应该输入哪个值?
CustomeTextView
类中的定义如下
strokeWidth = width;
strokeColor = color;
strokeJoin = join;
strokeMiter = miter;
我在 strokeJoin 字段中有问题,我应该输入哪个值? 感谢
答案 0 :(得分:1)
StrokeJoin似乎是Paint.Join枚举的值。 所以你应该尝试一下Paint.Join值,如:
Paint.Join.MITER;
Paint.Join.BEVEL;
Paint.Join.ROUND;
在此处查看不同的值:https://developer.android.com/reference/android/graphics/Paint.Join.html