Android编辑框EditText与焦点变更监视器及文本变化监视器实现流程详解

作者:Shewyoo 时间:2021-06-21 04:48:14 

一、编辑框EditText

编辑框用于接收键盘输入的文字,由文本视图派生而来,除了TextView已有的各种属性和方法,EditText还支持下列XML属性:

  • inputType:指定输入的文本类型,输入类型的取值说明如下表,若同时使用多种文本类型,则可使用竖线“|”把多种文本类型拼接起来。

  • maxLength:指定文本允许输入的最大长度。

  • hint:指定提示文本的内容。

  • textColorHint:指定提示文本的颜色。

输入类型说明
text文本
textPassword文本密码,显示时用圆点代替
number整型数
numberSigned带符号的数字,允许在开头带符号”-“
numberPassword数字密码,显示时用圆点代替
datetime时间日期格式,除了数字外,还允许输入横线、斜杠、空格、冒号
date日期格式,除了数字外,还允许输入横线”-“和斜杠”/“
time时间格式,除了数字外,还允许输入冒号”:“
numberDecimal带小数点的数字

例1:输入用户名和密码

Android编辑框EditText与焦点变更监视器及文本变化监视器实现流程详解

<EditText
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:inputType="text"
       android:maxLength="10"
       android:hint="请输入用户名"
       android:textColor="@color/black"
       android:textSize="17sp"/>
   <EditText
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:inputType="numberPassword"
       android:maxLength="10"
       android:hint="请输入密码"
       android:textColor="@color/black"
       android:textSize="17sp"/>

例2:自定义输入框样式:无边框和圆角边框

Android编辑框EditText与焦点变更监视器及文本变化监视器实现流程详解

Android编辑框EditText与焦点变更监视器及文本变化监视器实现流程详解

drawable下新建两个xml文件用于配置样式

第一个:选中时的样式

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<!--指定形状内的填充颜色-->
   <solid android:color="#ffffff"/>
<!--    指定形状轮廓的粗细与颜色-->
   <stroke
       android:width="1dp"
       android:color="#0000ff"/>
<!--    指定形状四个圆角的半径-->
   <corners android:radius="5dp"/>
<!--    指定形状四个方向的间距-->
   <padding
       android:bottom="2dp"
       android:left="2dp"
       android:right="2dp"
       android:top="2dp"/>
</shape>

第二个:正常样式

<shape xmlns:android="http://schemas.android.com/apk/res/android">
   <!--指定形状内的填充颜色-->
   <solid android:color="#ffffff"/>
   <!--    指定形状轮廓的粗细与颜色-->
   <stroke
       android:width="1dp"
       android:color="#aaaaaa"/>
   <!--    指定形状四个圆角的半径-->
   <corners android:radius="5dp"/>
   <!--    指定形状四个方向的间距-->
   <padding
       android:bottom="2dp"
       android:left="2dp"
       android:right="2dp"
       android:top="2dp"/>
</shape>

再在drawable文件下新建一个xml文件用于配置选中时和未选中时的样式。

<selector xmlns:android="http://schemas.android.com/apk/res/android">
   <item android:drawable="@drawable/edit_focus"
       android:state_focused="true"/>
   <item android:drawable="@drawable/edit_normal"/>
</selector>

Activity的XML文件

<EditText
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:background="@null"
       android:layout_marginTop="10dp"
       android:hint="无边框"
       android:inputType="text"/>
   <EditText
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:background="@drawable/edit_text"
       android:layout_marginTop="10dp"
       android:hint="圆角边框"
       android:inputType="text"/>

二、焦点变更监视器

调用编辑框对象的setOnFocusChangeListener方法,即可在光标切换时触发焦点变更事件。

使用场景如:手机号码未输满11位,就点击密码框,此时校验不通过,一边弹出提示文字,一边把焦点拉回手机框。

例:当手机号码不足11位时点击密码框会出现提示。

注意:不可采取这样的方式:为密码框绑定点击事件,当点击密码框时检测是否通过。

原因:编辑框点击两次后才会触发点击事件,第一次点击只触发焦点变更事件,第二次点击才触发点击事件。

Android编辑框EditText与焦点变更监视器及文本变化监视器实现流程详解

XML文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical">
   <EditText
       android:id="@+id/et_phone"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:background="@drawable/edit_text"
       android:layout_marginTop="10dp"
       android:hint="请输入11位手机号码"
       android:inputType="number"
       android:maxLength="11"/>
   <EditText
       android:id="@+id/et_password"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:background="@drawable/edit_text"
       android:layout_marginTop="10dp"
       android:hint="请输入密码"
       android:inputType="numberPassword"
       android:maxLength="11"/>
   <Button
       android:id="@+id/btn_login"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="登录"/>
</LinearLayout>

java类

public class EditFocusActivity extends AppCompatActivity implements View.OnFocusChangeListener {
   private EditText et_phone;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.activity_edit_focus);
       et_phone = findViewById(R.id.et_phone);
       EditText et_password = findViewById(R.id.et_password);
       et_password.setOnFocusChangeListener(this);
   }
   @Override
   public void onFocusChange(View view, boolean hasFocus) {
       if(hasFocus){
           String phone = et_phone.getText().toString();
           //如果手机号码不足11位或为空
           if(TextUtils.isEmpty(phone)||phone.length()<11){
               //手机号码编辑框请求焦点,把光标移回手机号码编辑框
               et_phone.requestFocus();
               Toast.makeText(this,"请输入11位的!",Toast.LENGTH_SHORT).show();
           }
       }
   }
}

三、文本变化 *

调用编辑框对象的addTextChangedListener方法即可注册文本 * 。

文本 * 的接口名称为TextWatcher,该接口提供了3个监控方法,具体说明:

  • beforeTextChanged:在文本改变之前触发。

  • onTextChanged:在文本改变过程种触发。

  • afterTextChanged:在文本改变后触发。

mEtPassword.addTextChangedListener(new MyWatcher());
class MyWatcher implements TextWatcher {
        public void beforeTextChanged(CharSequence s, int start, int count,int after) {
        }
        public void onTextChanged(CharSequence s, int start, int before,int count) {
        }
        public void afterTextChanged(Editable edit) {
        }
    }

来源:https://blog.csdn.net/Tir_zhang/article/details/126980126

标签:Android,EditText,焦点变更,文本变化
0
投稿

猜你喜欢

  • Android Studio搜索功能(查找功能)及快捷键图文详解

    2021-10-23 08:47:20
  • Java Spring拦截器案例详解

    2022-11-01 07:15:06
  • Android自定义图片集合

    2022-06-24 11:34:52
  • android 大图片拖拽并缩放实现原理

    2022-11-10 05:59:55
  • java开发分布式服务框架Dubbo暴露服务过程详解

    2021-07-19 17:59:50
  • Java中Map集合的常用方法详解

    2021-12-31 16:05:54
  • 在C#中global关键字的作用及其用法

    2021-12-24 04:33:19
  • Android通知栏微技巧一些需要注意的小细节

    2021-10-07 12:40:59
  • Mapper类中存在名称相同的方法重载报错问题

    2023-04-04 02:44:39
  • java实现Base64加密解密算法

    2023-11-25 08:07:27
  • android点击无效验证的解决方法

    2022-02-28 03:55:08
  • 如何安装系统认证签名过的APK

    2023-07-24 21:35:40
  • C#中数组初始化、反转和排序用法实例

    2023-05-03 23:03:10
  • 基于WPF实现验证码控件

    2021-08-15 21:44:36
  • OpenGL Shader实现阴影遮罩效果

    2022-04-23 19:38:02
  • Java动态规划方式解决不同的二叉搜索树

    2023-03-02 01:56:52
  • C#实现在图像中绘制文字图形的方法

    2023-03-20 17:06:11
  • Java cookie和session会话技术介绍

    2021-12-30 06:51:22
  • 详解Java 中 RMI 的使用

    2023-10-12 08:31:27
  • MyBatis找不到mapper文件的实现

    2023-12-15 09:22:11
  • asp之家 软件编程 m.aspxhome.com