EditText在API中的结构

java.lang.Object
android.view.View
android.widget.TextView        
android.widget.EditText

已知直接子类:
AutoCompleteTextView, ExtractEditText

已知间接子类:
MultiAutoCompleteTextView

EditText是TextView的直接子类 所以EditText会继承父类TextView的一些方法。下面我用自己写的一个Demo 和大家详细的说明一下EditView的使用方法。

1.简单的EditText输入框

非常简单,在layout布局中配置一下EditText 在配置一个Button 在代码中监听Button 的事件 获取当前EditView中输入的内容并且显示出来。

 
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/textviewll"
  4. android:orientation="vertical" android:layout_width="fill_parent"
  5. android:layout_height="fill_parent">
  6. <EditText
  7. android:id="@+id/sample_edit_text0"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text="简单的EditText输入框"/>
  11. <Button
  12. android:id="@+id/sample_button0"
  13. android:layout_width="fill_parent" android:layout_height="wrap_content"
  14. android:text="确定"/>
  15. </LinearLayout>
 
  1. public class SampleActivity extends Activity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. setContentView(R.layout.sample);
  5. final EditText editText0 = (EditText)findViewById(R.id.sample_edit_text0);
  6. Button button0 = (Button)findViewById(R.id.sample_button0);
  7. button0.setOnClickListener(new OnClickListener() {
  8. @Override
  9. public void onClick(View arg0) {
  10. String str = editText0.getText().toString();
  11. Toast.makeText(SampleActivity.this,str, Toast.LENGTH_LONG).show();
  12. }
  13. });
  14. super.onCreate(savedInstanceState);
  15. }
  16. }

2.限制EditText输入框的内容

 

在layout中配置信息

android:digits="1234567890.+-*/%\n()" 
限制输入框中只能输入自己定义的这些字符串 如果输入其它将不予以显示
android:phoneNumber="true"  
限制输入框中只能输入手机号码
android:password="true" 
限制输入框中输入的任何内容将以"*"符号来显示
android:hint="默认文字" 
输入内容前默认显示在输入框中的文字 
android:textColorHint="#FF0000"
设置文字内容颜色
android:enabled="false" 
设置输入框不能被编辑

  

3.编辑框中显示图片

上一篇讲TextView中就讲过在TextView中添加图片的方法,因为EditText是TextView的子类, 所以当然也可以添加图片了,只是一旦在EditText中添加图片以后是不能删除的,如图所示我可以编辑图片旁边的内容,写入文字。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/textviewll"
  4. android:orientation="vertical"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. >
  8. <EditText
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="在图片下方"
  12. android:textColor="#FF0000"
  13. android:drawableBottom="@drawable/jay"
  14. android:layout_alignParentTop="true"
  15. android:layout_centerHorizontal="true"
  16. >
  17. </EditText>
  18. <EditText
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:text="在图片上方"
  22. android:textColor="#FF0000"
  23. android:drawableTop="@drawable/jay"
  24. android:layout_alignParentBottom="true"
  25. android:layout_centerHorizontal="true"
  26. >
  27. </EditText>
  28. <EditText
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:text="在图片左边"
  32. android:textColor="#FF0000"
  33. android:drawableLeft="@drawable/jay"
  34. android:layout_alignParentLeft="true"
  35. android:layout_centerVertical="true"
  36. >
  37. </EditText>
  38. <EditText
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:text="在图片右边"
  42. android:textColor="#FF0000"
  43. android:drawableRight="@drawable/jay"
  44. android:layout_alignParentRight="true"
  45. android:layout_centerVertical="true"
  46. >
  47. </EditText>
  48. </RelativeLayout >

4.设置软键盘的Enter键

如图所示我们可以修改软键盘的Enter按钮的样式,可以在代码中监听 按钮点击事件。

 
  1. package cn.m15.xys;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.view.KeyEvent;
  5. import android.view.inputmethod.EditorInfo;
  6. import android.widget.EditText;
  7. import android.widget.TextView;
  8. import android.widget.Toast;
  9. import android.widget.TextView.OnEditorActionListener;
  10. public class KeyBoardActivity extends Activity {
  11. @Override
  12. protected void onCreate(Bundle savedInstanceState) {
  13. setContentView(R.layout.keyboard);
  14. EditText editText0 = (EditText)findViewById(R.id.txtTest0);
  15. editText0.setOnEditorActionListener(new OnEditorActionListener() {
  16. @Override
  17. public boolean onEditorAction(TextView arg0, int arg1, KeyEvent arg2) {
  18. if (arg1 == EditorInfo.IME_ACTION_GO) {
  19. Toast.makeText(KeyBoardActivity.this, "你点了软键盘'去往'按钮",
  20. Toast.LENGTH_SHORT).show();
  21. }
  22. return false;
  23. }
  24. });
  25. EditText editText1 = (EditText)findViewById(R.id.txtTest1);
  26. editText1.setOnEditorActionListener(new OnEditorActionListener() {
  27. @Override
  28. public boolean onEditorAction(TextView arg0, int arg1, KeyEvent arg2) {
  29. if (arg1 == EditorInfo.IME_ACTION_SEARCH) {
  30. Toast.makeText(KeyBoardActivity.this, "你点了软键盘'搜索'按钮",
  31. Toast.LENGTH_SHORT).show();
  32. }
  33. return false;
  34. }
  35. });
  36. EditText editText2 = (EditText)findViewById(R.id.txtTest2);
  37. editText2.setOnEditorActionListener(new OnEditorActionListener() {
  38. @Override
  39. public boolean onEditorAction(TextView arg0, int arg1, KeyEvent arg2) {
  40. if (arg1 == EditorInfo.IME_ACTION_SEND) {
  41. Toast.makeText(KeyBoardActivity.this, "你点了软键盘'发送'按钮",
  42. Toast.LENGTH_SHORT).show();
  43. }
  44. return false;
  45. }
  46. });
  47. EditText editText3 = (EditText)findViewById(R.id.txtTest3);
  48. editText3.setOnEditorActionListener(new OnEditorActionListener() {
  49. @Override
  50. public boolean onEditorAction(TextView arg0, int arg1, KeyEvent arg2) {
  51. if (arg1 == EditorInfo.IME_ACTION_NEXT) {
  52. Toast.makeText(KeyBoardActivity.this, "你点了软键盘'下一个'按钮",
  53. Toast.LENGTH_SHORT).show();
  54. }
  55. return false;
  56. }
  57. });
  58. EditText editText4 = (EditText)findViewById(R.id.txtTest4);
  59. editText4.setOnEditorActionListener(new OnEditorActionListener() {
  60. @Override
  61. public boolean onEditorAction(TextView arg0, int arg1, KeyEvent arg2) {
  62. if (arg1 == EditorInfo.IME_ACTION_DONE) {
  63. Toast.makeText(KeyBoardActivity.this, "你点了软键盘'完成'按钮",
  64. Toast.LENGTH_SHORT).show();
  65. }
  66. return false;
  67. }
  68. });
  69. EditText editText5 = (EditText)findViewById(R.id.txtTest5);
  70. editText5.setOnEditorActionListener(new OnEditorActionListener() {
  71. @Override
  72. public boolean onEditorAction(TextView arg0, int arg1, KeyEvent arg2) {
  73. if (arg1 == EditorInfo.IME_ACTION_UNSPECIFIED) {
  74. Toast.makeText(KeyBoardActivity.this, "你点了软键盘'未指定'按钮",
  75. Toast.LENGTH_SHORT).show();
  76. }
  77. return false;
  78. }
  79. });
  80. super.onCreate(savedInstanceState);
  81. }
  82. }

监听软键盘的点击事件

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/textviewll"
  4. android:orientation="vertical" android:layout_width="fill_parent"
  5. android:layout_height="fill_parent">
  6. <EditText android:id="@+id/txtTest0"
  7. android:imeOptions="actionGo"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:hint="特殊按钮-去往"
  11. ></EditText>
  12. <EditText android:id="@+id/txtTest1"
  13. android:imeOptions="actionSearch"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"
  16. android:hint="特殊按钮-搜索"
  17. ></EditText>
  18. <EditText android:id="@+id/txtTest2"
  19. android:imeOptions="actionSend"
  20. android:layout_width="fill_parent"
  21. android:layout_height="wrap_content"
  22. android:hint="特殊按钮-发送"
  23. ></EditText>
  24. <EditText android:id="@+id/txtTest3"
  25. android:imeOptions="actionNext"
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content"
  28. android:hint="特殊按钮-下一个"
  29. ></EditText>
  30. <EditText android:id="@+id/txtTest4"
  31. android:imeOptions="actionDone"
  32. android:layout_width="fill_parent"
  33. android:layout_height="wrap_content"
  34. android:hint="特殊按钮-完成"
  35. ></EditText>
  36. <EditText android:id="@+id/txtTest5"
  37. android:imeOptions="actionUnspecified"
  38. android:layout_width="fill_parent"
  39. android:layout_height="wrap_content"
  40. android:hint="特殊按钮-未指定"
  41. ></EditText>
  42. </LinearLayout>

5.监听软键盘的按键事件

做项目的时候 有时候须要在用户输入内容时做检测,比如如果用户输入不合法的内容不予以显示在EditText中, 这时候我就要用到addTextChangedListener 用它来监听用户输入状态。可以在监听中改变用户输入的内容或者提示用户输入内容不合法等等。 如图所示我的每次输入操作都可以被正常的监听出来,用户输入内容的正常流程 beforeTextChanged()  -》onTextChanged()  -》afterTextChanged()然后是通知屏幕绘制 显示在屏幕上 所以我们可以在这三个方法中来修改用户输入内容 或者截取用户输入的内容。

  1. package cn.m15.xys;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.text.Editable;
  5. import android.text.TextWatcher;
  6. import android.widget.EditText;
  7. import android.widget.TextView;
  8. public class MonitorKeyActivity extends Activity {
  9. @Override
  10. protected void onCreate(Bundle savedInstanceState) {
  11. setContentView(R.layout.monitorkey);
  12. EditText editText = (EditText)findViewById(R.id.monitor_edit_text0);
  13. final TextView textView0 = (TextView)findViewById(R.id.monitor_text0);
  14. final TextView textView1 = (TextView)findViewById(R.id.monitor_text1);
  15. final TextView textView2 = (TextView)findViewById(R.id.monitor_text2);
  16. editText.addTextChangedListener(new TextWatcher() {
  17. @Override
  18. public void onTextChanged(CharSequence text, int start, int before, int count) {
  19. //text  输入框中改变后的字符串信息
  20. //start 输入框中改变后的字符串的起始位置
  21. //before 输入框中改变前的字符串的位置 默认为0
  22. //count 输入框中改变后的一共输入字符串的数量
  23. textView1.setText("输入后字符串 [ " + text.toString() + " ] 起始光标 [ " + start + " ] 输入数量 [ " + count+" ]");
  24. }
  25. @Override
  26. public void beforeTextChanged(CharSequence text, int start, int count,int after) {
  27. //text  输入框中改变前的字符串信息
  28. //start 输入框中改变前的字符串的起始位置
  29. //count 输入框中改变前后的字符串改变数量一般为0
  30. //after 输入框中改变后的字符串与起始位置的偏移量
  31. System.out.println(text.toString());
  32. textView0.setText("输入前字符串 [ " + text.toString() + " ]起始光标 [ " + start + " ]结束偏移量  [" + after + " ]");
  33. }
  34. @Override
  35. public void afterTextChanged(Editable edit) {
  36. //edit  输入结束呈现在输入框中的信息
  37. textView2.setText("输入结束后的内容为 [" + edit.toString()+" ] 即将显示在屏幕上");
  38. }
  39. });
  40. super.onCreate(savedInstanceState);
  41. }
  42. }
 
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/textviewll"
  4. android:orientation="vertical" android:layout_width="fill_parent"
  5. android:layout_height="fill_parent">
  6. <TextView
  7. android:id="@+id/monitor_text0"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:textSize="18dip"
  11. android:textColor="#FF0000"/>
  12. <TextView
  13. android:id="@+id/monitor_text1"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"
  16. android:textSize="18dip"
  17. android:textColor="#FF0000"
  18. />
  19. <TextView
  20. android:id="@+id/monitor_text2"
  21. android:layout_width="fill_parent"
  22. android:layout_height="wrap_content"
  23. android:textSize="18dip"
  24. android:textColor="#FF0000"
  25. />
  26. <EditText
  27. android:id="@+id/monitor_edit_text0"
  28. android:layout_width="fill_parent"
  29. android:layout_height="wrap_content"
  30. android:hint="监听软键盘按键的输入状态"/>
  31. </LinearLayout>

Android软件开发之EditText 详解的更多相关文章

  1. Android软件开发之EditText 详解(八)

    原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法律责任.http://xys289187120.blog.51cto.com/3361352/65718 ...

  2. Android软件开发之ListView 详解【转】

    ListView的使用方法  ListView是Android软件开发中非常重要组件之一,基本上是个软件基本都会使用ListView ,今天我通过一个demo来教大家怎么样使用ListView组件 绘 ...

  3. 【Android】Android软件开发之ListView 详解

    原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法律责任.http://xys289187120.blog.51cto.com/3361352/65717 ...

  4. Android开发之EditText 详解(addTextChangedListener监听用户输入状态)

    为了实现像qq或者微信输入框的效果,当在 EditText输入字符串时发送按钮显示,当输入框字符消除掉时按钮改变.所以这时候我就要用到addTextChangedListener 用它来监听用户输入状 ...

  5. Android开发之InstanceState详解

    Android开发之InstanceState详解   本文介绍Android中关于Activity的两个神秘方法:onSaveInstanceState() 和 onRestoreInstanceS ...

  6. Android开发之InstanceState详解(转)---利用其保存Activity状态

    Android开发之InstanceState详解   本文介绍Android中关于Activity的两个神秘方法:onSaveInstanceState() 和 onRestoreInstanceS ...

  7. Android开发之MdiaPlayer详解

    Android开发之MdiaPlayer详解 MediaPlayer类可用于控制音频/视频文件或流的播放,我曾在<Android开发之基于Service的音乐播放器>一文中介绍过它的使用. ...

  8. android软件开发之webView.addJavascriptInterface循环渐进【一】

    本篇文章由:http://www.sollyu.com/android-software-development-webview-addjavascriptinterface-cycle-of-gra ...

  9. android软件开发之webView.addJavascriptInterface循环渐进【二】

    本篇文章由:http://www.sollyu.com/android-software-development-webview-addjavascriptinterface-cycle-of-gra ...

随机推荐

  1. spring aop 理解

    aop简介 aop是spring 的两大特性之一,还有IOC.主要提供面向切面的编程思想,区分于面向对象编程. aop原理(动态代理+反射) 在一个方法体中,可能会存在很多其他的方法调用,我们可以把每 ...

  2. CentOS 6.9开启iptables的日志实现调试

    系统日志配置在CentOS 5上叫syslog,而在CentOS 6上叫rsyslog(增强版的syslog),CentOS 5上的配置文件在/etc/syslog.conf下,而CentOS 6在/ ...

  3. Ext.form.ComboBox常用属性详解

    Ext.form.ComboBox常用属性详解 标签: Extjs js combo js 代码 var combo = new Ext.form.ComboBox({ store : new Ext ...

  4. reservoid sample 蓄水池问题

    题目:怎样从无穷尽流中等概率的抽样出一个单词? 也许我们换一种说法会更加easy理解.等概率的抽取出一个单词,也即随机的抽取一个单词. 本体的难点在于没有给定单词数,而是一个无尽的流. 这个问题能够用 ...

  5. IDA设置函数类型

    http://www.2cto.com/shouce/ida/1361.htm Action name: SetType 该命令允许你指定当前条目类型. 如果光标处在函数内部,那么函数类型将会被编辑, ...

  6. 为什么少有人在Windows电脑上安OS X?

    问:为什么许多人在Mac上安装Windows,却很少有人在PC上安装OS X呢?(注:通常,我们定义运行Windows的电脑为PC,而Mac的操作系统则为OS X) 答:iPhone的真正流行让更多的 ...

  7. rt-80启动tomcat

    1 #!/bin/sh 2 cd /mnt/tomcat/tomcat_8082; 3 ps -ef|grep /tomcat_8082/ |awk '{print $2}'|xargs kill - ...

  8. minor gc和full gc

    Minor GC ,Full GC 触发条件 Minor GC触发条件:当Eden区满时,触发Minor GC. Full GC触发条件: (1)调用System.gc时,系统建议执行Full GC, ...

  9. 记录memcache分布式策略及算法

    摘要 http://wenku.baidu.com/link?url=eUmpWDGFiFguyQLxwmXwRYmbnW7Wm1Bo79dGoomSnmOPWDIA5-FFSTNRI7MBQq8QG ...

  10. Android onConfigurationChanged 不执行

    自从Android 3.2(API 13),screen size也开始跟着设备的横竖切换而改变. 所以,在AndroidManifest.xml里设置的MiniSdkVersion和 TargetS ...