gpt4 book ai didi

java - Android 中的 TextView 大纲

转载 作者:行者123 更新时间:2023-11-30 00:13:06 28 4
gpt4 key购买 nike

我正在尝试在我的一个 android 应用程序中实现 TextView 大纲 here

我已经制作了自定义的 textView 类,没有任何错误。我正在尝试在我的 Activity 中使用它,但正如我正在学习的那样,我很困惑在 Activity 中将它用作 setStroke 方法。

我正在尝试如下

text_quotes.setStroke(0,R.color.toolbar_color,0,0);

有人可以建议我应该输入这四个字段的哪个值吗?

CustomeTextView类中定义如下

strokeWidth = width;
strokeColor = color;
strokeJoin = join;
strokeMiter = miter;

我在 strokeJoin 字段中有问题,我应该输入哪个值?谢谢

最佳答案

StrokeJoin 似乎是 Paint.Join 枚举的一个值。因此,您应该尝试使用 Paint.Join 值之一,例如:

Paint.Join.MITER;
Paint.Join.BEVEL;
Paint.Join.ROUND;

在这里查看不同的值:https://developer.android.com/reference/android/graphics/Paint.Join.html

关于java - Android 中的 TextView 大纲,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47826000/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com