• 文本输入编辑框 EditText


    目录

    一、EditText简单介绍

    二、EditText外观

    1.隐藏EditTExt边框

     2.自定义EditText边框

     三、监听焦点变更事件


    一、EditText简单介绍

    编辑框 EditText 用来接收软件键盘输入的文字,例如用户名、密码、评价内容等,它是由文本视图派生而来的,除了TextView 已有的各种属性和方法,EditText还支持下列XML属性

           1. maxLength: 指定文本允许输入的最大长度

           2. textColorHint: 指定提示文本的颜色

           3. hint:指定提示文本内容

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

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

    二、EditText外观

    一般情况下,EditText 形状如下

    1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    2. android:layout_width="match_parent"
    3. android:layout_height="match_parent"
    4. android:orientation="vertical">
    5. <EditText
    6. android:layout_width="match_parent"
    7. android:layout_height="wrap_content"
    8. android:inputType="text"
    9. android:hint="请输入用户名" />
    10. <EditText
    11. android:layout_width="match_parent"
    12. android:layout_height="wrap_content"
    13. android:inputType="numberPassword"
    14. android:hint="请输入密码"/>
    15. </LinearLayout>

    1.隐藏EditTExt边框

    如果我们想要隐藏边框的话,只需要在EditText属性中添加

    android:background="@null"

     

     2.自定义EditText边框

    如果我们想要自定义EditText边框,例如当焦点选中边框变蓝,不选中边框为灰

    第一步:

    先创建两个drawable文件来显示EditText选中和一般两种情况的形状

        shape_edti_focus.xml(自己给文件起的名称)

    选中时Edittext边框的效果

    1. "1.0" encoding="utf-8"?>
    2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
    3. <solid android:color="#fff"/>
    4. <stroke android:width="1dp" android:color="#0000ff"/>
    5. <corners android:radius="5dp"/>
    6. <padding android:bottom="2dp" android:left="2dp" android:right="2dp" android:top="2dp"/>
    7. shape>

            shape_edit_normal.xml

    1. "1.0" encoding="utf-8"?>
    2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
    3. <solid android:color="#fff"/>
    4. <stroke android:width="1dp" android:color="#aaa"/>
    5. <corners android:radius="5dp"/>
    6. <padding android:bottom="2dp" android:left="2dp" android:right="2dp" android:top="2dp"/>
    7. shape>

    第二步:再创建一个文件把上面两个柔和到一起

            edittext_selector.xml

    1. <?xml version="1.0" encoding="utf-8"?>
    2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
    3. <item android:state_focused="true" android:drawable="@drawable/shape_edit_focus"/>
    4. <item android:drawable="@drawable/shape_edit_normal"/>
    5. </selector>

     第三步:在Edittext内background中引用  edittext_selector.xml

     效果如下:

     三、监听焦点变更事件

       如果我们想做一个校验的工作,例如手机号码未输满11位,就点击密码框,此时校验不通过,一般弹出提示文字,一遍把焦点拉回手机框

     第一步:先写布局文件

    1. <?xml version="1.0" encoding="utf-8"?>
    2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    3. android:layout_width="match_parent"
    4. android:layout_height="match_parent"
    5. android:orientation="vertical">
    6. <EditText
    7. android:id="@+id/et_phone"
    8. android:layout_width="match_parent"
    9. android:layout_height="wrap_content"
    10. android:inputType="number"
    11. android:maxLength="11"
    12. android:hint="请输入11位手机号码" />
    13. <EditText
    14. android:id="@+id/et_password"
    15. android:layout_width="match_parent"
    16. android:layout_height="wrap_content"
    17. android:inputType="numberPassword"
    18. android:maxLength="6"
    19. android:hint="请输入输入6位密码"/>
    20. </LinearLayout>

    第二步:创建监听事件

    注意:监听事件要给et_password设置

    1. package com.example.signin;
    2. import androidx.appcompat.app.AppCompatActivity;
    3. import android.os.Bundle;
    4. import android.text.TextUtils;
    5. import android.view.View;
    6. import android.widget.EditText;
    7. import android.widget.Toast;
    8. public class activity_edit extends AppCompatActivity implements View.OnFocusChangeListener {
    9. EditText et_phone;
    10. EditText et_password;
    11. @Override
    12. protected void onCreate(Bundle savedInstanceState) {
    13. super.onCreate(savedInstanceState);
    14. setContentView(R.layout.activity_edit);
    15. et_phone = findViewById(R.id.et_phone);
    16. et_password = findViewById(R.id.et_password);
    17. //设置监听
    18. et_password.setOnFocusChangeListener(this);
    19. }
    20. @Override
    21. public void onFocusChange(View v, boolean b) {
    22. if(hasWindowFocus()){
    23. String phone = et_phone.getText().toString();
    24. if(TextUtils.isEmpty(phone) || phone.length() < 11){
    25. // 手机号码编辑框请求焦点,也就是把光标移回手机号码编辑
    26. et_phone.requestFocus();
    27. Toast.makeText(this,"请输入11位手机号码",Toast.LENGTH_SHORT).show();
    28. }
    29. }
    30. }
    31. }
  • 相关阅读:
    SaaSBase:什么是珍客销售云?
    2021全国大学生电子设计竞赛论文(智能送药小车(F题))(电赛论文模板)
    基于SSM在线纳新系统毕业设计-附源码241540
    电脑开不了机用U盘重装系统Win10教程
    c语言基础学习笔记(二):条件判断语句if-else嵌套和switch-case语句
    使用亚马逊云服务器在 G4 实例上运行 Android 应用程序
    深入剖析多重背包问题(下篇)
    SpringBoot集成Sharding-JDBC实现主从同步
    【进程与线程】进程与线程 Q&A
    TorchDynamo初探②:Torch.FX调研和实践
  • 原文地址:https://blog.csdn.net/weixin_53564801/article/details/127681864