Kotlin TextView.text + =

时间:2018-07-01 14:20:20

标签: android kotlin

I want to keep the text in the text view and add 0 to it 我已经尝试过txtCalc.text =“文本” +“ 0”并且它不起作用

2 个答案:

答案 0 :(得分:2)

如果您在Private Sub Workbook_Open() Dim MValue As String Dim XValue As Integer MValue = Format(Date, "mm/dd/yy") LValue = Left(MValue, 2) XValue = CInt(LValue) Range("K1").Value = XValue End Sub 中阅读当前文本,则会得到一个TextView,必须将其转换为字符串,然后再对其进行连接:

CharSequence

或者您也可以使用textView.text = textView.text.toString() + "0" 的{​​{3}}方法:

TextView

或者,如果您确实想使用textView.append("0") ,则可以在+=上创建自己的扩展名:

TextView

答案 1 :(得分:0)

text是一个CharSequence,未定义+(加运算符)。

使用字符串模板,您仍然可以更简洁地编写它。

注意:toString()在文本(CharSequence)上被隐式调用,将其转换为String

textView.text = "${textView.text}0"