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中输入的内容并且显示出来。
XML/HTML代码
<?xml version="1.0" enCoding="utf-8"?> <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:ID="@+ID/textvIEwll" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent"> <EditText androID:ID="@+ID/sample_edit_text0" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:text="简单的EditText输入框"/> <button androID:ID="@+ID/sample_button0" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:text="确定"/> </linearLayout>
Java代码
public class SampleActivity extends Activity { @OverrIDe protected voID onCreate(Bundle savedInstanceState) { setContentVIEw(R.layout.sample); final EditText editText0 = (EditText)findVIEwByID(R.ID.sample_edit_text0); button button0 = (button)findVIEwByID(R.ID.sample_button0); button0.setonClickListener(new OnClickListener() { @OverrIDe public voID onClick(VIEw arg0) { String str = editText0.getText().toString(); Toast.makeText(SampleActivity.this,str,Toast.LENGTH_LONG).show(); } }); super.onCreate(savedInstanceState); } }
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中添加图片以后是不能删除的,如图所示我可以编辑图片旁边的内容,写入文字。
XML/HTML代码
<?xml version="1.0" enCoding="utf-8"?> <relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:ID="@+ID/textvIEwll" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" > <EditText androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="在图片下方" androID:textcolor="#FF0000" androID:drawableBottom="@drawable/jay" androID:layout_alignParenttop="true" androID:layout_centerHorizontal="true" > </EditText> <EditText androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="在图片上方" androID:textcolor="#FF0000" androID:drawabletop="@drawable/jay" androID:layout_alignParentBottom="true" androID:layout_centerHorizontal="true" > </EditText> <EditText androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="在图片左边" androID:textcolor="#FF0000" androID:drawableleft="@drawable/jay" androID:layout_alignParentleft="true" androID:layout_centerVertical="true" > </EditText> <EditText androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="在图片右边" androID:textcolor="#FF0000" androID:drawableRight="@drawable/jay" androID:layout_alignParentRight="true" androID:layout_centerVertical="true" > </EditText> </relativeLayout >
4.设置软键盘的Enter键
如图所示我们可以修改软键盘的Enter按钮的样式,可以在代码中监听 按钮点击事件。
Java代码
package cn.m15.xys; import androID.app.Activity; import androID.os.Bundle; import androID.vIEw.KeyEvent; import androID.vIEw.inputmethod.EditorInfo; import androID.Widget.EditText; import androID.Widget.TextVIEw; import androID.Widget.Toast; import androID.Widget.TextVIEw.OnEditorActionListener; public class KeyBoardActivity extends Activity { @OverrIDe protected voID onCreate(Bundle savedInstanceState) { setContentVIEw(R.layout.keyboard); EditText editText0 = (EditText)findVIEwByID(R.ID.txtTest0); editText0.setonEditorActionListener(new OnEditorActionListener() { @OverrIDe public boolean onEditorAction(TextVIEw arg0,int arg1,KeyEvent arg2) { if (arg1 == EditorInfo.IME_ACTION_GO) { Toast.makeText(KeyBoardActivity.this,"你点了软键盘'去往'按钮",Toast.LENGTH_SHORT).show(); } return false; } }); EditText editText1 = (EditText)findVIEwByID(R.ID.txtTest1); editText1.setonEditorActionListener(new OnEditorActionListener() { @OverrIDe public boolean onEditorAction(TextVIEw arg0,KeyEvent arg2) { if (arg1 == EditorInfo.IME_ACTION_SEARCH) { Toast.makeText(KeyBoardActivity.this,"你点了软键盘'搜索'按钮",Toast.LENGTH_SHORT).show(); } return false; } }); EditText editText2 = (EditText)findVIEwByID(R.ID.txtTest2); editText2.setonEditorActionListener(new OnEditorActionListener() { @OverrIDe public boolean onEditorAction(TextVIEw arg0,KeyEvent arg2) { if (arg1 == EditorInfo.IME_ACTION_SEND) { Toast.makeText(KeyBoardActivity.this,"你点了软键盘'发送'按钮",Toast.LENGTH_SHORT).show(); } return false; } }); EditText editText3 = (EditText)findVIEwByID(R.ID.txtTest3); editText3.setonEditorActionListener(new OnEditorActionListener() { @OverrIDe public boolean onEditorAction(TextVIEw arg0,KeyEvent arg2) { if (arg1 == EditorInfo.IME_ACTION_NEXT) { Toast.makeText(KeyBoardActivity.this,"你点了软键盘'下一个'按钮",Toast.LENGTH_SHORT).show(); } return false; } }); EditText editText4 = (EditText)findVIEwByID(R.ID.txtTest4); editText4.setonEditorActionListener(new OnEditorActionListener() { @OverrIDe public boolean onEditorAction(TextVIEw arg0,KeyEvent arg2) { if (arg1 == EditorInfo.IME_ACTION_DONE) { Toast.makeText(KeyBoardActivity.this,"你点了软键盘'完成'按钮",Toast.LENGTH_SHORT).show(); } return false; } }); EditText editText5 = (EditText)findVIEwByID(R.ID.txtTest5); editText5.setonEditorActionListener(new OnEditorActionListener() { @OverrIDe public boolean onEditorAction(TextVIEw arg0,KeyEvent arg2) { if (arg1 == EditorInfo.IME_ACTION_UnspecIFIED) { Toast.makeText(KeyBoardActivity.this,"你点了软键盘'未指定'按钮",Toast.LENGTH_SHORT).show(); } return false; } }); super.onCreate(savedInstanceState); } }
监听软键盘的点击事件
XML/HTML代码
<?xml version="1.0" enCoding="utf-8"?> <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:ID="@+ID/textvIEwll" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent"> <EditText androID:ID="@+ID/txtTest0" androID:imeOptions="actionGo" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:hint="特殊按钮-去往" ></EditText> <EditText androID:ID="@+ID/txtTest1" androID:imeOptions="actionSearch" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:hint="特殊按钮-搜索" ></EditText> <EditText androID:ID="@+ID/txtTest2" androID:imeOptions="actionSend" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:hint="特殊按钮-发送" ></EditText> <EditText androID:ID="@+ID/txtTest3" androID:imeOptions="actionNext" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:hint="特殊按钮-下一个" ></EditText> <EditText androID:ID="@+ID/txtTest4" androID:imeOptions="actionDone" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:hint="特殊按钮-完成" ></EditText> <EditText androID:ID="@+ID/txtTest5" androID:imeOptions="actionUnspecifIEd" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:hint="特殊按钮-未指定" ></EditText> </linearLayout>
5.监听软键盘的按键事件
做项目的时候 有时候须要在用户输入内容时做检测,比如如果用户输入不合法的内容不予以显示在EditText中, 这时候我就要用到addTextChangedListener 用它来监听用户输入状态。可以在监听中改变用户输入的内容或者提示用户输入内容不合法等等。 如图所示我的每次输入 *** 作都可以被正常的监听出来,用户输入内容的正常流程 beforeTextChanged() -》onTextChanged() -》afterTextChanged()然后是通知屏幕绘制 显示在屏幕上 所以我们可以在这三个方法中来修改用户输入内容 或者截取用户输入的内容。
Java代码
package cn.m15.xys; import androID.app.Activity; import androID.os.Bundle; import androID.text.Editable; import androID.text.TextWatcher; import androID.Widget.EditText; import androID.Widget.TextVIEw; public class MonitorKeyActivity extends Activity { @OverrIDe protected voID onCreate(Bundle savedInstanceState) { setContentVIEw(R.layout.monitorkey); EditText editText = (EditText)findVIEwByID(R.ID.monitor_edit_text0); final TextVIEw textVIEw0 = (TextVIEw)findVIEwByID(R.ID.monitor_text0); final TextVIEw textVIEw1 = (TextVIEw)findVIEwByID(R.ID.monitor_text1); final TextVIEw textVIEw2 = (TextVIEw)findVIEwByID(R.ID.monitor_text2); editText.addTextChangedListener(new TextWatcher() { @OverrIDe public voID onTextChanged(CharSequence text,int start,int before,int count) { //text 输入框中改变后的字符串信息 //start 输入框中改变后的字符串的起始位置 //before 输入框中改变前的字符串的位置 默认为0 //count 输入框中改变后的一共输入字符串的数量 textVIEw1.setText("输入后字符串 [ " + text.toString() + " ] 起始光标 [ " + start + " ] 输入数量 [ " + count+" ]"); } @OverrIDe public voID beforeTextChanged(CharSequence text,int count,int after) { //text 输入框中改变前的字符串信息 //start 输入框中改变前的字符串的起始位置 //count 输入框中改变前后的字符串改变数量一般为0 //after 输入框中改变后的字符串与起始位置的偏移量 System.out.println(text.toString()); textVIEw0.setText("输入前字符串 [ " + text.toString() + " ]起始光标 [ " + start + " ]结束偏移量 [" + after + " ]"); } @OverrIDe public voID afterTextChanged(Editable edit) { //edit 输入结束呈现在输入框中的信息 textVIEw2.setText("输入结束后的内容为 [" + edit.toString()+" ] 即将显示在屏幕上"); } }); super.onCreate(savedInstanceState); } }
XML/HTML代码
<?xml version="1.0" enCoding="utf-8"?> <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:ID="@+ID/textvIEwll" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent"> <TextVIEw androID:ID="@+ID/monitor_text0" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:textSize="18dip" androID:textcolor="#FF0000"/> <TextVIEw androID:ID="@+ID/monitor_text1" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:textSize="18dip" androID:textcolor="#FF0000" /> <TextVIEw androID:ID="@+ID/monitor_text2" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:textSize="18dip" androID:textcolor="#FF0000" /> <EditText androID:ID="@+ID/monitor_edit_text0" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:hint="监听软键盘按键的输入状态"/> </linearLayout>
希望通过此文,大家可以对AndroID RditText的知识掌握,谢谢大家对本站的支持!
总结以上是内存溢出为你收集整理的Android EditText详解及示例代码全部内容,希望文章能够帮你解决Android EditText详解及示例代码所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)