-
Android应用开发EditText文本内容变化监听方法
- import android.app.Activity;
- import android.os.Bundle;
- import android.text.Editable;
- import android.text.TextWatcher;
- import android.widget.EditText;
-
- public class ActMain extends Activity {
-
- private EditText et_search;
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
-
- et_search = (EditText) findViewById(R.id.et_search);
-
- et_search.addTextChangedListener(textWatcher);
- }
-
- private TextWatcher textWatcher = new TextWatcher() {
-
- @Override
- public void onTextChanged(CharSequence s, int start, int before,
- int count) {
- System.out.println("-1-onTextChanged-->"
- + et_search.getText().toString() + "<--");
- }
-
- @Override
- public void beforeTextChanged(CharSequence s, int start, int count,
- int after) {
- System.out.println("-2-beforeTextChanged-->"
- + et_search.getText().toString() + "<--");
-
- }
-
- @Override
- public void afterTextChanged(Editable s) {
- System.out.println("-3-afterTextChanged-->"
- + et_search.getText().toString() + "<--");
-
- }
- };
- }
-
相关阅读:
什么是HTTP
通过递归法解决阶梯问题(n个台阶,上楼可以一步上1阶,也可以一步上2阶,一共有多少种上楼的方法)
在Intelli Idea中使用plantuml(plantuml时序图的使用)
Java中if(boolean)与if(boolean=true)的区别
实现一个Servlet程序
退出mysql的编辑模式
mysql数据库基本操作命令行
通过mysql命令查看mysql服务实例支持的搜索引擎
Mac环境下使用终端启动Mysql,并进行mysql数据库的连接
路飞学城Python-Day4
-
原文地址:https://www.cnblogs.com/1995hxt/p/4829180.html
Copyright © 2020-2023
润新知