监听EditView中的文本改变事件详解--转

时间:2022-05-19 08:32:39

转自:

http://blog.csdn.net/zoeice/article/details/7700529

android中的编辑框EditText也比较常用,那比如在搜索框中,没输入一个字,下面的搜索列表就显示有包含输入关键字的选项,这个输入监听怎么实现的呢?

我们可以建一个例子,效果图如下:

监听EditView中的文本改变事件详解--转

我们可以监听光标处在哪个位置,选择了几个字符并处理,输入了几个字符

先新建布局文件

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="@drawable/af">
  6. <!-- 上下滚动 -->
  7. <ScrollView
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent" >
  10. <LinearLayout
  11. android:layout_width="fill_parent"
  12. android:layout_height="fill_parent"
  13. android:orientation="vertical" >
  14. <!-- 编辑框 -->
  15. <EditText
  16. android:id="@+id/id_edittext_1"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:background="@drawable/alert_light"
  20. android:textSize="10sp"
  21. android:textColor="#ffff"
  22. />
  23. <TextView
  24. android:id="@+id/id_textview"
  25. android:layout_width="fill_parent"
  26. android:layout_height="wrap_content"
  27. android:textColor="#ffff"
  28. />
  29. <TextView
  30. android:id="@+id/id_textview_1"
  31. android:layout_width="fill_parent"
  32. android:layout_height="wrap_content"
  33. android:background="@drawable/hah"
  34. android:textColor="#f000"
  35. />
  36. <TextView
  37. android:id="@+id/id_textview_2"
  38. android:layout_width="fill_parent"
  39. android:layout_height="wrap_content"
  40. android:background="@drawable/hah"
  41. android:textColor="#f000"
  42. />
  43. </LinearLayout>
  44. </ScrollView>
  45. </LinearLayout>

然后在代码中对编辑框绑定输入监听事件:

  1. public class EditTextTestActivity extends Activity {
  2. /**编辑框*/
  3. private EditText edit1_;
  4. /**文本*/
  5. private TextView text_;
  6. private TextView text1_;
  7. private TextView text2_;
  8. /** Called when the activity is first created. */
  9. @Override
  10. public void onCreate(Bundle savedInstanceState) {
  11. super.onCreate(savedInstanceState);
  12. setContentView(R.layout.main);
  13. /*设置当前页面的布局*/
  14. setMyLayout();
  15. }
  16. /**
  17. * 设置当前页面的布局
  18. */
  19. private void setMyLayout(){
  20. /*取得文本*/
  21. text_ = (TextView)findViewById(R.id.id_textview);
  22. text1_ = (TextView)findViewById(R.id.id_textview_1);
  23. text2_ = (TextView)findViewById(R.id.id_textview_2);
  24. /*取得编辑框*/
  25. edit1_ = (EditText)findViewById(R.id.id_edittext_1);
  26. /*监听 编辑框中的文本改变事件*/
  27. edit1_.addTextChangedListener(new TextWatcher() {
  28. @Override
  29. public void onTextChanged(CharSequence s, int start, int before, int count) {
  30. /*++ 文本每次改变就会跑这个方法 ++*/
  31. if(null != text_){
  32. text_.setText("您正在输入......\n当前光标处在第 " + start
  33. +" 个位置\n您选择处理了 " + before + " 个字符\n您这次输入的词语有 "
  34. + count + " 个字符");
  35. }
  36. }
  37. @Override
  38. public void beforeTextChanged(CharSequence s, int start, int count,
  39. int after) {
  40. /*++这里的count树枝上是和onTextChanged()里的before一样的
  41. * after树枝上是和onTextChanged()里的count一样的 ++*/
  42. if(null != text1_){
  43. text1_.setText("您正在输入......\n当前光标处在第 " + start
  44. +" 个位置\n您选择处理了 " + count + " 个字符\n您这次输入的词语有 "
  45. + after + " 个字符");
  46. }
  47. }
  48. @Override
  49. public void afterTextChanged(Editable s) {
  50. /*++这里显示出输入的字符串++*/
  51. if(null != text2_){
  52. text2_.setText(s);
  53. }
  54. }
  55. });
  56. }
  57. }

然后就ok了,很多地都可以用到这个办法。

源代码在下面:

http://download.csdn.net/detail/zoeice/4399601