在Android中键入时更新TextViews

时间:2012-02-16 22:03:39

标签: android android-edittext textview

我正在尝试编写一个Android应用程序,它将更新一些TextViews,因为我在一些EditText视图中输入了一些值(实时更新)。我想也许以某种形式使用while循环可能有所帮助,但我想知道是否有更好的方法。

1 个答案:

答案 0 :(得分:6)

是的,还有更好的方法。只需使用:

textMessage.addTextChangedListener(new TextWatcher(){...}

使用textwatcher中的onTextChanged(...)函数修改标签内容。