12

我想在用户输入 EditText 时将文本放入我的应用程序中的某个字符串中,并使用它在活动中生动地显示它(在不同的视图中......) - 就像谷歌的实时/即时搜索一样......

4

1 回答 1

34

您正在寻找TextWatcher

    youredittext.addTextChangedListener(new TextWatcher()
    {
        @Override
        public void afterTextChanged(Editable mEdit) 
        {
            text = mEdit.toString();
        }

        public void beforeTextChanged(CharSequence s, int start, int count, int after){}

        public void onTextChanged(CharSequence s, int start, int before, int count){}
    });
于 2013-04-03T21:24:01.740 回答