标签: java android-studio
在android studio中我遇到了一个问题:
variable 'button' is accessed from withing inner class, needs to be declared final.
我该如何解决这个问题?
答案 0 :(得分:3)
只需在变量前键入 final 例如:
var foo = "one| | ||two| | three| | four||";
这应该可以胜任。