Android中的TextView大纲

时间:2017-12-15 04:54:12

标签: java android textview

我正在尝试在我的一个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 字段中有问题,我应该输入哪个值? 感谢

1 个答案:

答案 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