EditText

 一:输入特殊格式的字符

在我们开发程序的时候不免会输入一些特属个数的字符,比如密码(输入框的字符要加密显示),电话号码(比如数字和-),数字等,这些都算是一些特属格式的字符,强大的EditText同样为我们提供了输入这些特属格式字符的设置。

  1. 密码文本框。密码输入也是Android应用常用的功能,通过配置EditText的android:password="true"就可以实现这一密码输入功能,修改main.xml如下:
    Xml代码
    1. <? xml   version = "1.0"   encoding = "utf-8" ?>   
    2. < LinearLayout   xmlns:android = "http://schemas.android.com/apk/res/android"   
    3.     android:orientation = "vertical"   
    4.     android:layout_width = "fill_parent"   
    5.     android:layout_height = "fill_parent"   
    6.     >   
    7. < EditText   
    8.     android:id = "@+id/edit_text"     
    9.     android:layout_width = "fill_parent"    
    10.     android:layout_height = "wrap_content"   
    11.     android:password = "true" />   
    12. </ LinearLayout >   
     运行效果如下:

     可以看到我们输入的字符已经被“.”这样的掩码所代替。
  2. 手机中发短信打电话是必不可少的,所以用于专门输入电话号码的文本框也是大有用途,有了他我们对是否是电话号码的校验就容易的多了(因为字符是正确的,只要校验格式 ).通过设置android:phoneNumber="true"就可以把EditText变成只接受电话号码输入的文本框,连软键盘都已经变成拨号专用软键盘了,所以不用再担心输入其他字符了。修改main.xml如下:
    Xml代码
    1. <? xml   version = "1.0"   encoding = "utf-8" ?>   
    2. < LinearLayout   xmlns:android = "http://schemas.android.com/apk/res/android"   
    3.     android:orientation = "vertical"   
    4.     android:layout_width = "fill_parent"   
    5.     android:layout_height = "fill_parent"   
    6.     >   
    7. < EditText   
    8.     android:id = "@+id/edit_text"     
    9.     android:layout_width = "fill_parent"    
    10.     android:layout_height = "wrap_content"   
    11.     android:phoneNumber = "true" />   
    12. </ LinearLayout >   
     运行程序效果如下:

     注意看软键盘,已经变成拨号专用的啦.
  3. 有时候我们只想输入数字,不想输入字母,EditText为我们提供了 android:numeric来控制输入的数字类型,一共有三种分别为integer(正整数)、signed(带符号整数)和decimal(浮点 数)。这里以signed类型的为例,修改main.xml如下:
    Xml代码
    1. <? xml   version = "1.0"   encoding = "utf-8" ?>   
    2. < LinearLayout   xmlns:android = "http://schemas.android.com/apk/res/android"   
    3.     android:orientation = "vertical"   
    4.     android:layout_width = "fill_parent"   
    5.     android:layout_height = "fill_parent"   
    6.     >   
    7. < EditText   
    8.     android:id = "@+id/edit_text"     
    9.     android:layout_width = "fill_parent"    
    10.     android:layout_height = "wrap_content"   
    11.     android:numeric = "signed" />   
    12. </ LinearLayout >   
     运行效果如下:

     注意这里的软键盘变成“数字键盘”的变化.

二:为文本指定特定的软键盘类型

前面我们通过指定为电话号码特定格式,然后键盘类型变成了拨号专用的键盘,这个是自动变的,其实我们也可以通 过android:inputType来设置文本的类型,让输入法选择合适的软键盘的。。android:inputType有很多类型,这里使用date类型来演示,修改main.xml如下:

Xml代码
  1. <? xml   version = "1.0"   encoding = "utf-8" ?>   
  2. < LinearLayout   xmlns:android = "http://schemas.android.com/apk/res/android"   
  3.     android:orientation = "vertical"   
  4.     android:layout_width = "fill_parent"   
  5.     android:layout_height = "fill_parent"   
  6.     >   
  7. < EditText   
  8.     android:id = "@+id/edit_text"     
  9.     android:layout_width = "fill_parent"    
  10.     android:layout_height = "wrap_content"   
  11.     android:inputType = "date" />   
  12. </ LinearLayout >   

  运行效果如下:

三:Enter键图标的设置

软键盘的Enter 键默认显示的是“完成”文本,我们知道按Enter建表示前置工作已经准备完毕了,要去什么什么啦。比如,在一个搜索中,我们输入要搜索的文本,然后按 Enter表示要去搜索了,但是默认的Enter键显示的是“完成”文本,看着不太合适,不符合搜索的语义,如果能显示“搜索”两个字或者显示一个表示搜 索的图标多好。事实证明我们的想法是合理的,Android也为我们提供的这样的功能。通过设置android:imeOptions来改变默认的“完 成”文本。这里举几个常用的常量值:

  1. actionUnspecified  未指定,对应常量EditorInfo.IME_ACTION_UNSPECIFIED.效果:
  2. actionNone 没有动作,对应常量EditorInfo.IME_ACTION_NONE 效果:
  3. actionGo 去往,对应常量EditorInfo.IME_ACTION_GO 效果:
  4. actionSearch 搜索,对应常量EditorInfo.IME_ACTION_SEARCH 效果:
  5. actionSend 发送,对应常量EditorInfo.IME_ACTION_SEND 效果:
  6. actionNext 下一个,对应常量EditorInfo.IME_ACTION_NEXT 效果:
  7. actionDone 完成,对应常量EditorInfo.IME_ACTION_DONE 效果:

 下面已搜索为例,演示一个实例,修改main.xml如下:

Xml代码
  1. <? xml   version = "1.0"   encoding = "utf-8" ?>   
  2. < LinearLayout   xmlns:android = "http://schemas.android.com/apk/res/android"   
  3.     android:orientation = "vertical"   
  4.     android:layout_width = "fill_parent"   
  5.     android:layout_height = "fill_parent"   
  6.     >   
  7. < EditText   
  8.     android:id = "@+id/edit_text"     
  9.     android:layout_width = "fill_parent"    
  10.     android:layout_height = "wrap_content"   
  11.     android:imeOptions = "actionSearch" />   
  12. </ LinearLayout >   

  修改HelloEditText如下:

Java代码
  1. package  com.flysnow;  
  2.   
  3. import  android.app.Activity;  
  4. import  android.os.Bundle;  
  5. import  android.view.KeyEvent;  
  6. import  android.widget.EditText;  
  7. import  android.widget.TextView;  
  8. import  android.widget.Toast;  
  9. import  android.widget.TextView.OnEditorActionListener;  
  10.   
  11. public   class  HelloEditText  extends  Activity {  
  12.     /** Called when the activity is first created. */   
  13.     @Override   
  14.     public   void  onCreate(Bundle savedInstanceState) {  
  15.         super .onCreate(savedInstanceState);  
  16.         setContentView(R.layout.main);  
  17.         EditText editText=(EditText)findViewById(R.id.edit_text);  
  18.         editText.setOnEditorActionListener(new  OnEditorActionListener() {  
  19.             @Override   
  20.             public   boolean  onEditorAction(TextView v,  int  actionId, KeyEvent event) {  
  21.                 Toast.makeText(HelloEditText.this , String.valueOf(actionId), Toast.LENGTH_SHORT).show();  
  22.                 return   false ;  
  23.             }  
  24.         });  
  25.     }  
  26. }  
package com.flysnow;

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.TextView.OnEditorActionListener;

public class HelloEditText extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        EditText editText=(EditText)findViewById(R.id.edit_text);
        editText.setOnEditorActionListener(new OnEditorActionListener() {
			@Override
			public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
				Toast.makeText(HelloEditText.this, String.valueOf(actionId), Toast.LENGTH_SHORT).show();
				return false;
			}
		});
    }
}

 运行程序,点击回车(也就是搜索图标软键盘按钮)会显示该actionId.我们上面的每一个设置都会对应一个常量,这里的actionId就是那个常量值。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值