We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c19e020 commit 4263728Copy full SHA for 4263728
library/src/main/java/xyz/junerver/ssktx/TextView.kt
@@ -124,7 +124,7 @@ interface DslSpanBuilder {
124
fun setDrawableRight(drawable: Drawable, alignment: Int = DynamicDrawableSpan.ALIGN_BASELINE)
125
126
//下划线
127
- fun userUnderLine()
+ fun useUnderLine()
128
129
//删除线
130
fun useStrikethrough()
@@ -236,7 +236,7 @@ class DslSpanBuilderImpl(private val textView: TextView) : DslSpanBuilder {
236
setDrawable(drawable, false, alignment)
237
}
238
239
- override fun userUnderLine() {
+ override fun useUnderLine() {
240
underlineSpan = UnderlineSpan()
241
spanList.add(underlineSpan)
242
0 commit comments