焦点变更监听器

该代码段展示了一个Android布局,包含两个EditText输入框,分别用于输入11位手机号码和6位密码。EditText设置了输入类型和长度限制,并添加了焦点变化监听器以验证手机号码的完整性。当密码输入框获得焦点时,检查手机号码是否为11位,否则提示用户输入正确的手机号码。
摘要由CSDN通过智能技术生成

案例

<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:maxLength="11"
        android:hint="请输入11位手机号码"
        android:inputType="number"
        android:background="@drawable/edit_selector9"
        android:layout_marginTop="10dp"/>
    <EditText
        android:id="@+id/et_password"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:maxLength="6"
        android:hint="请输入6位手机号码"
        android:inputType="numberPassword"
        android:background="@drawable/edit_selector9" />
    <Button
        android:id="@+id/btn_login"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:text="登录"/>
</LinearLayout>
        et_phone = findViewById(R.id.et_phone);
        et_password = findViewById(R.id.et_password);
//        给et_password注册一个焦点变化监听器
        et_password.setOnFocusChangeListener(this);
         //焦点变更的处理方法
         // 为什么没有选onclick?因为要点两下才会触发onclick,第一下时切换焦点动作
        public void onFocusChange(View v, boolean hasFocus) {
//        hasFocus 表示当前控件是否获得焦点
//        if (v.getId() == R.id.et_password && hasFocus)
        if (hasFocus){
            String phone = et_phone.getText().toString();
            if(TextUtils.isEmpty(phone) || phone.length() < 11 ){
                et_phone.requestFocus();
                Toast.makeText(this,"请输入11位的手机号码",Toast.LENGTH_SHORT).show();
            }
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

当当2000

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值